Properties
| Name |
Type |
Description |
Notes |
| item_id |
str |
|
[optional] [readonly] |
| metadata |
object |
|
[optional] |
Example
from odm_api.models.metadata_with_id import MetadataWithId
# TODO update the JSON string below
json = "{}"
# create an instance of MetadataWithId from a JSON string
metadata_with_id_instance = MetadataWithId.from_json(json)
# print the JSON string representation of the object
print(MetadataWithId.to_json())
# convert the object into a dict
metadata_with_id_dict = metadata_with_id_instance.to_dict()
# create an instance of MetadataWithId from a dict
metadata_with_id_from_dict = MetadataWithId.from_dict(metadata_with_id_dict)
[Back to Model list] [Back to API list] [Back to README]