Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.66 KB

ListHDWalletXPubYPubZPubTransactionsRData.md

File metadata and controls

31 lines (23 loc) · 1.66 KB

ListHDWalletXPubYPubZPubTransactionsRData

Properties

Name Type Description Notes
limit int Defines how many items should be returned in the response per page basis.
offset int The starting index of the response items, i.e. where the response should start listing the returned items.
total int Defines the total number of items returned in the response.
items List[ListHDWalletXPubYPubZPubTransactionsRI]

Example

from cryptoapis.models.list_hd_wallet_x_pub_y_pub_z_pub_transactions_r_data import ListHDWalletXPubYPubZPubTransactionsRData

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

# convert the object into a dict
list_hd_wallet_x_pub_y_pub_z_pub_transactions_r_data_dict = list_hd_wallet_x_pub_y_pub_z_pub_transactions_r_data_instance.to_dict()
# create an instance of ListHDWalletXPubYPubZPubTransactionsRData from a dict
list_hd_wallet_x_pub_y_pub_z_pub_transactions_r_data_form_dict = list_hd_wallet_x_pub_y_pub_z_pub_transactions_r_data.from_dict(list_hd_wallet_x_pub_y_pub_z_pub_transactions_r_data_dict)

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