Name |
Type |
Description |
Notes |
customer_ref_id |
str |
Customer reference ID |
[optional] |
from fireblocks.models.set_customer_ref_id_request import SetCustomerRefIdRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SetCustomerRefIdRequest from a JSON string
set_customer_ref_id_request_instance = SetCustomerRefIdRequest.from_json(json)
# print the JSON string representation of the object
print(SetCustomerRefIdRequest.to_json())
# convert the object into a dict
set_customer_ref_id_request_dict = set_customer_ref_id_request_instance.to_dict()
# create an instance of SetCustomerRefIdRequest from a dict
set_customer_ref_id_request_from_dict = SetCustomerRefIdRequest.from_dict(set_customer_ref_id_request_dict)
[Back to Model list] [Back to API list] [Back to README]