Skip to content

UpdateMetadata

Properties

Name Type Description Notes
update_single_metadata_fields List[UpdateSingleMetadataField] List of metadata fields to be updated [optional]
update_metadata_field_groups List[UpdateMetadataFieldGroup] List of metadata field groups to be updated [optional]

Example

from libica.openapi.v3.models.update_metadata import UpdateMetadata

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

# convert the object into a dict
update_metadata_dict = update_metadata_instance.to_dict()
# create an instance of UpdateMetadata from a dict
update_metadata_from_dict = UpdateMetadata.from_dict(update_metadata_dict)

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