Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Latest commit

 

History

History
33 lines (25 loc) · 1.04 KB

File metadata and controls

33 lines (25 loc) · 1.04 KB

AssetMetadata

Properties

Name Type Description Notes
id str [optional]
deleted bool [optional]
name str
value str [optional]
asset_id str [optional]
asset_name str [optional]

Example

from clientapi_atrocore.models.asset_metadata import AssetMetadata

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

# convert the object into a dict
asset_metadata_dict = asset_metadata_instance.to_dict()
# create an instance of AssetMetadata from a dict
asset_metadata_form_dict = asset_metadata.from_dict(asset_metadata_dict)

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