Skip to content

Files

Latest commit

f5c7fc2 · Dec 31, 2024

History

History
29 lines (20 loc) · 1.16 KB

ScheduledTransactionResponseData.md

File metadata and controls

29 lines (20 loc) · 1.16 KB

ScheduledTransactionResponseData

Properties

Name Type Description Notes
scheduled_transaction ScheduledTransactionDetail

Example

from ynab.models.scheduled_transaction_response_data import ScheduledTransactionResponseData

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

# convert the object into a dict
scheduled_transaction_response_data_dict = scheduled_transaction_response_data_instance.to_dict()
# create an instance of ScheduledTransactionResponseData from a dict
scheduled_transaction_response_data_from_dict = ScheduledTransactionResponseData.from_dict(scheduled_transaction_response_data_dict)

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