Event timestamp, if not specified, the processing timestamp of the broker will added as timestamp
attribute.
Name | Type | Description | Notes |
---|
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)