| Name | Type | Description | Notes |
|---|---|---|---|
| tracing_id | str | ||
| raw_message | str | ||
| archived_at | datetime | ||
| expires_at | datetime | ||
| ingress_dto | IngressDTO | [optional] |
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)