Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.09 KB

CreateAddressRequest.md

File metadata and controls

30 lines (21 loc) · 1.09 KB

CreateAddressRequest

Properties

Name Type Description Notes
description str (Optional) Attach a description to the new address [optional]
customer_ref_id str Optional - Sets a customer reference ID [optional]

Example

from fireblocks.models.create_address_request import CreateAddressRequest

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

# convert the object into a dict
create_address_request_dict = create_address_request_instance.to_dict()
# create an instance of CreateAddressRequest from a dict
create_address_request_from_dict = CreateAddressRequest.from_dict(create_address_request_dict)

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