Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.43 KB

CreateCoinsTransactionRequestFromAddressRISenders.md

File metadata and controls

29 lines (21 loc) · 1.43 KB

CreateCoinsTransactionRequestFromAddressRISenders

Defines details about the source, i.e. the sender.

Properties

Name Type Description Notes
address str Defines the sender's public address.

Example

from cryptoapis.models.create_coins_transaction_request_from_address_ri_senders import CreateCoinsTransactionRequestFromAddressRISenders

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

# convert the object into a dict
create_coins_transaction_request_from_address_ri_senders_dict = create_coins_transaction_request_from_address_ri_senders_instance.to_dict()
# create an instance of CreateCoinsTransactionRequestFromAddressRISenders from a dict
create_coins_transaction_request_from_address_ri_senders_form_dict = create_coins_transaction_request_from_address_ri_senders.from_dict(create_coins_transaction_request_from_address_ri_senders_dict)

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