Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 972 Bytes

EventTimestamp.md

File metadata and controls

29 lines (20 loc) · 972 Bytes

EventTimestamp

Event timestamp, if not specified, the processing timestamp of the broker will added as timestamp attribute.

Properties

Name Type Description Notes

Example

from waylay.services.data.models.event_timestamp import EventTimestamp

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

# convert the object into a dict
event_timestamp_dict = event_timestamp_instance.to_dict()
# create an instance of EventTimestamp from a dict
event_timestamp_form_dict = event_timestamp.from_dict(event_timestamp_dict)

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