Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

WebhookAttemptArray.md

File metadata and controls

30 lines (21 loc) · 1.01 KB

WebhookAttemptArray

Properties

Name Type Description Notes
data List[WebhookAttemptRead]
meta Meta

Example

from firefly_iii_client.models.webhook_attempt_array import WebhookAttemptArray

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

# convert the object into a dict
webhook_attempt_array_dict = webhook_attempt_array_instance.to_dict()
# create an instance of WebhookAttemptArray from a dict
webhook_attempt_array_form_dict = webhook_attempt_array.from_dict(webhook_attempt_array_dict)

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