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

Latest commit

 

History

History
29 lines (21 loc) · 1.68 KB

File metadata and controls

29 lines (21 loc) · 1.68 KB

CreateSingleTransactionRequestFromAddressWithoutFeePriorityRISender

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_single_transaction_request_from_address_without_fee_priority_ri_sender import CreateSingleTransactionRequestFromAddressWithoutFeePriorityRISender

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

# convert the object into a dict
create_single_transaction_request_from_address_without_fee_priority_ri_sender_dict = create_single_transaction_request_from_address_without_fee_priority_ri_sender_instance.to_dict()
# create an instance of CreateSingleTransactionRequestFromAddressWithoutFeePriorityRISender from a dict
create_single_transaction_request_from_address_without_fee_priority_ri_sender_form_dict = create_single_transaction_request_from_address_without_fee_priority_ri_sender.from_dict(create_single_transaction_request_from_address_without_fee_priority_ri_sender_dict)

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