Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

RowHeader.md

File metadata and controls

31 lines (22 loc) · 1.04 KB

RowHeader

Index entry attributes. Attributes for a timestamp index entry.

Properties

Name Type Description Notes
timestamp int Unix epoch milliseconds timestamp.
timestamp_iso datetime ISO8601 rendering of the timestamp, present when `render.iso_timestamp=true` [optional]

Example

from waylay.services.queries.models.row_header import RowHeader

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

# convert the object into a dict
row_header_dict = row_header_instance.to_dict()
# create an instance of RowHeader from a dict
row_header_form_dict = row_header.from_dict(row_header_dict)

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