We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70ec1cc commit 024b93dCopy full SHA for 024b93d
cuenca/resources/__init__.py
@@ -38,6 +38,7 @@
38
'WalletTransaction',
39
'Webhook',
40
'WhatsappTransfer',
41
+ 'Jwt',
42
]
43
44
from .accounts import Account
@@ -59,6 +60,7 @@
59
60
from .files import File
61
from .identities import Identity
62
from .identity_events import IdentityEvent
63
+from .jwt import Jwt
64
from .kyc_validations import KYCValidation
65
from .kyc_verifications import KYCVerification
66
from .limited_wallets import LimitedWallet
cuenca/resources/jwt.py
@@ -0,0 +1,12 @@
1
+from typing import ClassVar
2
+
3
+from pydantic import SecretStr
4
5
+from .base import Creatable
6
7
8
+class Jwt(Creatable):
9
+ _resource: ClassVar = 'jwt'
10
11
+ token: SecretStr
12
+ api_key: str
0 commit comments