Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion cuenca/resources/kyc_validations.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
from typing import ClassVar, Optional

from cuenca_validations.types import KYCValidationRequest, KYCValidationSource
from cuenca_validations.types import (
KYCValidationRequest,
KYCValidationSource,
KYCValidationStatus,
)
Comment thread
rogelioLpz marked this conversation as resolved.
Comment thread
rogelioLpz marked this conversation as resolved.
from pydantic import ConfigDict

from ..http import Session, session as global_session
Expand All @@ -13,6 +17,7 @@ class KYCValidation(Creatable, Retrievable, Queryable):
user_id: str
source_type: KYCValidationSource
flow_id: str
status: KYCValidationStatus
files_uri: Optional[list[str]] = None
verification_id: Optional[str] = None
identity_id: Optional[str] = None
Expand Down
2 changes: 1 addition & 1 deletion cuenca/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '2.1.13'
__version__ = '2.1.14.dev0'
CLIENT_VERSION = __version__
API_VERSION = '2020-03-19'
Loading