Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.1 KB

ScheduledTransactionResponse.md

File metadata and controls

29 lines (20 loc) · 1.1 KB

ScheduledTransactionResponse

Properties

Name Type Description Notes
data ScheduledTransactionResponseData

Example

from ynab.models.scheduled_transaction_response import ScheduledTransactionResponse

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

# convert the object into a dict
scheduled_transaction_response_dict = scheduled_transaction_response_instance.to_dict()
# create an instance of ScheduledTransactionResponse from a dict
scheduled_transaction_response_from_dict = ScheduledTransactionResponse.from_dict(scheduled_transaction_response_dict)

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