Skip to content

Commit cbe496d

Browse files
committed
Add deactivated_at and user_tos_agreements_id fields to User class
1 parent 32434b5 commit cbe496d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

cuenca/resources/users.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,8 @@ class User(Creatable, Retrievable, Updateable, Queryable):
8787
country_of_birth: Optional[Country] = None
8888
blacklist_validation_status: Optional[VerificationStatus] = None
8989
pronouns: Optional[str] = None
90+
deactivated_at: Optional[dt.datetime] = None
91+
user_tos_agreements_id: Optional[str] = None
9092

9193
@property
9294
def balance(self) -> int:

0 commit comments

Comments
 (0)