Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.32 KB

SmartTransferTicketFilteredResponse.md

File metadata and controls

31 lines (22 loc) · 1.32 KB

SmartTransferTicketFilteredResponse

Properties

Name Type Description Notes
message str Result message
after str Unique id of next filtered result
data List[SmartTransferTicket] Result that match given query criteria

Example

from fireblocks.models.smart_transfer_ticket_filtered_response import SmartTransferTicketFilteredResponse

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

# convert the object into a dict
smart_transfer_ticket_filtered_response_dict = smart_transfer_ticket_filtered_response_instance.to_dict()
# create an instance of SmartTransferTicketFilteredResponse from a dict
smart_transfer_ticket_filtered_response_from_dict = SmartTransferTicketFilteredResponse.from_dict(smart_transfer_ticket_filtered_response_dict)

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