Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

PublishEventResponse.md

File metadata and controls

30 lines (21 loc) · 1.05 KB

PublishEventResponse

Properties

Name Type Description Notes
message str [optional]
content PublishEventResponseContent [optional]

Example

from waylay.services.data.models.publish_event_response import PublishEventResponse

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

# convert the object into a dict
publish_event_response_dict = publish_event_response_instance.to_dict()
# create an instance of PublishEventResponse from a dict
publish_event_response_form_dict = publish_event_response.from_dict(publish_event_response_dict)

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