Skip to content
This repository was archived by the owner on Dec 1, 2025. It is now read-only.

Latest commit

 

History

History
28 lines (20 loc) · 982 Bytes

File metadata and controls

28 lines (20 loc) · 982 Bytes

EncodeXAddressRI

Properties

Name Type Description Notes
x_address str Represents the encoded classic address with its destination tag.

Example

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]