Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.04 KB

File metadata and controls

33 lines (24 loc) · 1.04 KB

ArchivedIngress

Properties

Name Type Description Notes
tracing_id str
raw_message str
archived_at datetime
expires_at datetime
ingress_dto IngressDTO [optional]

Example

from sensorbucket.models.archived_ingress import ArchivedIngress

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

# convert the object into a dict
archived_ingress_dict = archived_ingress_instance.to_dict()
# create an instance of ArchivedIngress from a dict
archived_ingress_from_dict = ArchivedIngress.from_dict(archived_ingress_dict)

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