Skip to content

Commit 80b419f

Browse files
committed
SignatureFile
1 parent 43c9296 commit 80b419f

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

cuenca_validations/types/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
'StrictTransferRequest',
7676
'TermsOfService',
7777
'TOSAgreement',
78-
'Signature',
78+
'SignatureFile',
7979
'TOSRequest',
8080
'TrackDataMethod',
8181
'TransactionQuery',
@@ -169,7 +169,7 @@
169169
KYCFile,
170170
PhoneNumber,
171171
Rfc,
172-
Signature,
172+
SignatureFile,
173173
TOSAgreement,
174174
VerificationErrors,
175175
)

cuenca_validations/types/identities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ class TOSAgreement(BaseModel):
174174
)
175175

176176

177-
class Signature(BaseModel):
177+
class SignatureFile(BaseModel):
178178
uri: str = Field(description="url to fetch the signature image")
179179
location: str = Field(description="location of the signature")
180180
ip: IPvAnyAddress = Field(description="ip address of the signature")

cuenca_validations/types/requests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
Password,
6969
PhoneNumber,
7070
Rfc,
71-
Signature,
71+
SignatureFile,
7272
TOSAgreement,
7373
)
7474
from .morals import (
@@ -625,7 +625,7 @@ class KYCValidationRequest(BaseRequest):
625625

626626

627627
class SignatureRequest(BaseRequest):
628-
signature: Signature
628+
signature: SignatureFile
629629
user_id: str
630630

631631

cuenca_validations/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.1.1.dev1'
1+
__version__ = '2.1.1.dev2'

0 commit comments

Comments
 (0)