Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.24 KB

ScheduledTransactionsResponseData.md

File metadata and controls

30 lines (21 loc) · 1.24 KB

ScheduledTransactionsResponseData

Properties

Name Type Description Notes
scheduled_transactions List[ScheduledTransactionDetail]
server_knowledge int The knowledge of the server

Example

from ynab.models.scheduled_transactions_response_data import ScheduledTransactionsResponseData

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

# convert the object into a dict
scheduled_transactions_response_data_dict = scheduled_transactions_response_data_instance.to_dict()
# create an instance of ScheduledTransactionsResponseData from a dict
scheduled_transactions_response_data_from_dict = ScheduledTransactionsResponseData.from_dict(scheduled_transactions_response_data_dict)

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