Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.08 KB

File metadata and controls

27 lines (20 loc) · 1.08 KB

WebhookPreviewsDto

Properties

Name Type Description Notes
previews List[WebhookPreviewDto] [optional]

Example

from phrasetms_client.models.webhook_previews_dto import WebhookPreviewsDto

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

# convert the object into a dict
webhook_previews_dto_dict = webhook_previews_dto_instance.to_dict()
# create an instance of WebhookPreviewsDto from a dict
webhook_previews_dto_from_dict = WebhookPreviewsDto.from_dict(webhook_previews_dto_dict)

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