Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.4 KB

File metadata and controls

36 lines (27 loc) · 1.4 KB

BusinessIdentification

Properties

Name Type Description Notes
external_reference_id str
entity_type BusinessEntityTypeEnum
participant_relationship_type ParticipantRelationshipType
business_name str
registration_number str
postal_address PostalAddress
email str [optional]
phone str Mobile phone number in E.164 format [optional]

Example

from fireblocks.models.business_identification import BusinessIdentification

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

# convert the object into a dict
business_identification_dict = business_identification_instance.to_dict()
# create an instance of BusinessIdentification from a dict
business_identification_from_dict = BusinessIdentification.from_dict(business_identification_dict)

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