Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

WebhookMessageArray.md

File metadata and controls

30 lines (21 loc) · 1.01 KB

WebhookMessageArray

Properties

Name Type Description Notes
data List[WebhookMessageRead]
meta Meta

Example

from firefly_iii_client.models.webhook_message_array import WebhookMessageArray

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

# convert the object into a dict
webhook_message_array_dict = webhook_message_array_instance.to_dict()
# create an instance of WebhookMessageArray from a dict
webhook_message_array_form_dict = webhook_message_array.from_dict(webhook_message_array_dict)

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