Metadata associated with a custom interval type
| Name | Type | Description | Notes |
|---|---|---|---|
| metadata_type | str | [optional] [readonly] |
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)