Skip to content

CreateGroup201ResponseAllOfMeta

resource metadata

Properties

Name Type Description Notes
created datetime [optional]
last_modified datetime [optional]
resource_type str [optional]

Example

from odm_api.models.create_group201_response_all_of_meta import CreateGroup201ResponseAllOfMeta

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

# convert the object into a dict
create_group201_response_all_of_meta_dict = create_group201_response_all_of_meta_instance.to_dict()
# create an instance of CreateGroup201ResponseAllOfMeta from a dict
create_group201_response_all_of_meta_from_dict = CreateGroup201ResponseAllOfMeta.from_dict(create_group201_response_all_of_meta_dict)
[Back to Model list] [Back to API list] [Back to README]