You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ISO 3166-1 alpha-2 country code where the entity is registered
[optional]
national_identification
str
National identification as JSON string
[optional]
date_of_incorporation
date
Date of entity incorporation (ISO 8601 format: YYYY-MM-DD)
[optional]
vaults
List[int]
Associated Fireblocks vault account IDs
[optional]
tr_primary_purpose
str
Primary purpose for Travel Rule compliance (enum value)
[optional]
Example
fromfireblocks.models.tr_link_create_customer_requestimportTRLinkCreateCustomerRequest# TODO update the JSON string belowjson="{}"# create an instance of TRLinkCreateCustomerRequest from a JSON stringtr_link_create_customer_request_instance=TRLinkCreateCustomerRequest.from_json(json)
# print the JSON string representation of the objectprint(TRLinkCreateCustomerRequest.to_json())
# convert the object into a dicttr_link_create_customer_request_dict=tr_link_create_customer_request_instance.to_dict()
# create an instance of TRLinkCreateCustomerRequest from a dicttr_link_create_customer_request_from_dict=TRLinkCreateCustomerRequest.from_dict(tr_link_create_customer_request_dict)