Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.17 KB

PublishResourceEventResponseContent.md

File metadata and controls

29 lines (20 loc) · 1.17 KB

PublishResourceEventResponseContent

Properties

Name Type Description Notes
timestamp int Event timestamp

Example

from waylay.services.data.models.publish_resource_event_response_content import PublishResourceEventResponseContent

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

# convert the object into a dict
publish_resource_event_response_content_dict = publish_resource_event_response_content_instance.to_dict()
# create an instance of PublishResourceEventResponseContent from a dict
publish_resource_event_response_content_form_dict = publish_resource_event_response_content.from_dict(publish_resource_event_response_content_dict)

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