Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 947 Bytes

File metadata and controls

30 lines (21 loc) · 947 Bytes

CustomMetadata

Metadata associated with a custom interval type

Properties

Name Type Description Notes
metadata_type str [optional] [readonly]

Example

from oden.models.custom_metadata import CustomMetadata

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

# convert the object into a dict
custom_metadata_dict = custom_metadata_instance.to_dict()
# create an instance of CustomMetadata from a dict
custom_metadata_from_dict = CustomMetadata.from_dict(custom_metadata_dict)

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