Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.31 KB

File metadata and controls

39 lines (30 loc) · 1.31 KB

ReceiveAddress

AddressResp wallet address response body

Properties

Name Type Description Notes
account_id str [optional]
address str [optional]
address_meta List[AddressMeta] [optional]
asset str [optional]
assigned_at int [optional]
name str [optional]
qr_code_uri str [optional]
receive_fee str [optional]
total_received str [optional]
total_unconfirmed str [optional]

Example

from luno_openapi.models.receive_address import ReceiveAddress

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

# convert the object into a dict
receive_address_dict = receive_address_instance.to_dict()
# create an instance of ReceiveAddress from a dict
receive_address_from_dict = ReceiveAddress.from_dict(receive_address_dict)

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