Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 955 Bytes

File metadata and controls

33 lines (24 loc) · 955 Bytes

IngressDTO

Properties

Name Type Description Notes
tracing_id str
pipeline_id str
owner_id int
payload str
created_at datetime

Example

from sensorbucket.models.ingress_dto import IngressDTO

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

# convert the object into a dict
ingress_dto_dict = ingress_dto_instance.to_dict()
# create an instance of IngressDTO from a dict
ingress_dto_from_dict = IngressDTO.from_dict(ingress_dto_dict)

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