Skip to content

Latest commit

History

History
31 lines (22 loc) · 953 Bytes

File metadata and controls

31 lines (22 loc) · 953 Bytes

TimestampModel

Properties

NameTypeDescriptionNotes
pe_timestampint
export_timestampint
debug_timestampint

Example

fromrevengai.models.timestamp_modelimportTimestampModel# TODO update the JSON string belowjson="{}"# create an instance of TimestampModel from a JSON stringtimestamp_model_instance=TimestampModel.from_json(json)
# print the JSON string representation of the objectprint(TimestampModel.to_json())
# convert the object into a dicttimestamp_model_dict=timestamp_model_instance.to_dict()
# create an instance of TimestampModel from a dicttimestamp_model_from_dict=TimestampModel.from_dict(timestamp_model_dict)

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