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] |
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]