Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 981 Bytes

WebhookRead.md

File metadata and controls

32 lines (23 loc) · 981 Bytes

WebhookRead

Properties

Name Type Description Notes
attributes Webhook
id str
links ObjectLink
type str Immutable value

Example

from firefly_iii_client.models.webhook_read import WebhookRead

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

# convert the object into a dict
webhook_read_dict = webhook_read_instance.to_dict()
# create an instance of WebhookRead from a dict
webhook_read_form_dict = webhook_read.from_dict(webhook_read_dict)

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