Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1011 Bytes

File metadata and controls

32 lines (23 loc) · 1011 Bytes

RunMetadata

Metadata associated with a run interval

Properties

Name Type Description Notes
metadata_type str [optional] [readonly]
product Product [optional]
target Target [optional]

Example

from oden.models.run_metadata import RunMetadata

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

# convert the object into a dict
run_metadata_dict = run_metadata_instance.to_dict()
# create an instance of RunMetadata from a dict
run_metadata_from_dict = RunMetadata.from_dict(run_metadata_dict)

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