Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.84 KB

File metadata and controls

37 lines (28 loc) · 1.84 KB

TRLinkCreateCustomerRequest

Properties

Name Type Description Notes
discoverable TRLinkDiscoverableStatus [optional]
short_name str Short display name (required)
full_legal_name str Full legal entity name [optional]
geographic_address TRLinkGeographicAddressRequest [optional]
country_of_registration str 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

from fireblocks.models.tr_link_create_customer_request import TRLinkCreateCustomerRequest

# TODO update the JSON string below
json = "{}"
# create an instance of TRLinkCreateCustomerRequest from a JSON string
tr_link_create_customer_request_instance = TRLinkCreateCustomerRequest.from_json(json)
# print the JSON string representation of the object
print(TRLinkCreateCustomerRequest.to_json())

# convert the object into a dict
tr_link_create_customer_request_dict = tr_link_create_customer_request_instance.to_dict()
# create an instance of TRLinkCreateCustomerRequest from a dict
tr_link_create_customer_request_from_dict = TRLinkCreateCustomerRequest.from_dict(tr_link_create_customer_request_dict)

[Back to Model list] [Back to API list] [Back to README]