File tree Expand file tree Collapse file tree 5 files changed +16
-6
lines changed
Expand file tree Collapse file tree 5 files changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name = "flagright"
33
44[tool .poetry ]
55name = " flagright"
6- version = " 1.8.35 "
6+ version = " 1.8.36 "
77description = " "
88readme = " README.md"
99authors = []
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ client.transactions.verify(
6868 origin_user_id = " 8650a2611d0771cba03310f74bf6" ,
6969 destination_user_id = " 9350a2611e0771cba03310f74bf6" ,
7070 origin_amount_details = TransactionAmountDetails(
71- transaction_amount = 800 .0 ,
71+ transaction_amount = 2000 .0 ,
7272 transaction_currency = " EUR" ,
7373 country = " DE" ,
7474 ),
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ def __init__(
2222
2323 def get_headers (self ) -> typing .Dict [str , str ]:
2424 headers : typing .Dict [str , str ] = {
25- "User-Agent" : "flagright/1.8.35 " ,
25+ "User-Agent" : "flagright/1.8.36 " ,
2626 "X-Fern-Language" : "Python" ,
2727 "X-Fern-SDK-Name" : "flagright" ,
28- "X-Fern-SDK-Version" : "1.8.35 " ,
28+ "X-Fern-SDK-Version" : "1.8.36 " ,
2929 ** (self .get_custom_headers () or {}),
3030 }
3131 headers ["x-api-key" ] = self .api_key
Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ def verify(
187187 origin_user_id="8650a2611d0771cba03310f74bf6",
188188 destination_user_id="9350a2611e0771cba03310f74bf6",
189189 origin_amount_details=TransactionAmountDetails(
190- transaction_amount=800 .0,
190+ transaction_amount=2000 .0,
191191 transaction_currency="EUR",
192192 country="DE",
193193 ),
@@ -482,7 +482,7 @@ async def main() -> None:
482482 origin_user_id="8650a2611d0771cba03310f74bf6",
483483 destination_user_id="9350a2611e0771cba03310f74bf6",
484484 origin_amount_details=TransactionAmountDetails(
485- transaction_amount=800 .0,
485+ transaction_amount=2000 .0,
486486 transaction_currency="EUR",
487487 country="DE",
488488 ),
Original file line number Diff line number Diff line change 1010from .company_general_details import CompanyGeneralDetails
1111from .company_registration_details import CompanyRegistrationDetails
1212from .contact_details import ContactDetails
13+ from .pep_status import PepStatus
1314from .source_of_funds import SourceOfFunds
15+ from .tag import Tag
1416
1517
1618class LegalEntity (UniversalBaseModel ):
@@ -36,6 +38,14 @@ class LegalEntity(UniversalBaseModel):
3638 contact_details : typing_extensions .Annotated [
3739 typing .Optional [ContactDetails ], FieldMetadata (alias = "contactDetails" )
3840 ] = None
41+ tags : typing .Optional [typing .List [Tag ]] = pydantic .Field (default = None )
42+ """
43+ Additional information that can be added via tags
44+ """
45+
46+ pep_status : typing_extensions .Annotated [
47+ typing .Optional [typing .List [PepStatus ]], FieldMetadata (alias = "pepStatus" )
48+ ] = None
3949
4050 if IS_PYDANTIC_V2 :
4151 model_config : typing .ClassVar [pydantic .ConfigDict ] = pydantic .ConfigDict (extra = "allow" , frozen = True ) # type: ignore # Pydantic v2
You can’t perform that action at this time.
0 commit comments