Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 2.37 KB

File metadata and controls

40 lines (31 loc) · 2.37 KB

TRLinkCustomerResponse

Properties

Name Type Description Notes
id str Customer unique identifier
discoverable TRLinkDiscoverableStatus
short_name str Short display name
full_legal_name str Full legal entity name
geographic_address TRLinkGeographicAddressRequest [optional]
country_of_registration str ISO 3166-1 alpha-2 country code where the entity is registered
national_identification str National identification, returned exactly as stored: a compact, whitespace-free JSON-encoded string with these optional keys (in this order): `nationalIdentifier`, `nationalIdentifierType` (e.g. `LEIX` for an LEI), `countryOfIssue` (ISO 3166-1 alpha-2), `registrationAuthority`. Maximum length is 240 characters. [optional]
date_of_incorporation date Date of entity incorporation (ISO 8601 format) [optional]
vaults List[int] Associated Fireblocks vault account IDs [optional]
tr_primary_purpose str Primary Travel Rule role for this customer; determines how the customer's Travel Rule messages are routed. Valid values: `notabene`, `trlink`.
create_date datetime Timestamp when the customer was created (ISO 8601 format)
last_update datetime Timestamp when the customer was last updated (ISO 8601 format)

Example

from fireblocks.models.tr_link_customer_response import TRLinkCustomerResponse

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

# convert the object into a dict
tr_link_customer_response_dict = tr_link_customer_response_instance.to_dict()
# create an instance of TRLinkCustomerResponse from a dict
tr_link_customer_response_from_dict = TRLinkCustomerResponse.from_dict(tr_link_customer_response_dict)

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