Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.32 KB

File metadata and controls

34 lines (25 loc) · 1.32 KB

CreateAddressBookParam

The request body to add an address to your Address Book.

Properties

Name Type Description Notes
chain_ids List[str] A list of chain IDs.
address str The wallet address.
memo str Optional memo or tag required by some chains. [optional]
label str A user-defined label for the address. [optional]
email str The email of the address owner. [optional]

Example

from cobo_waas2.models.create_address_book_param import CreateAddressBookParam

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

# convert the object into a dict
create_address_book_param_dict = create_address_book_param_instance.to_dict()
# create an instance of CreateAddressBookParam from a dict
create_address_book_param_from_dict = CreateAddressBookParam.from_dict(create_address_book_param_dict)

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