| Name |
Type |
Description |
Notes |
| x_address |
str |
Represents the encoded classic address with its destination tag. |
|
from cryptoapis.models.encode_x_address_ri import EncodeXAddressRI
# TODO update the JSON string below
json = "{}"
# create an instance of EncodeXAddressRI from a JSON string
encode_x_address_ri_instance = EncodeXAddressRI.from_json(json)
# print the JSON string representation of the object
print EncodeXAddressRI.to_json()
# convert the object into a dict
encode_x_address_ri_dict = encode_x_address_ri_instance.to_dict()
# create an instance of EncodeXAddressRI from a dict
encode_x_address_ri_form_dict = encode_x_address_ri.from_dict(encode_x_address_ri_dict)
[Back to Model list] [Back to API list] [Back to README]