| Name | Type | Description | Notes |
|---|---|---|---|
| api_version | str | The version of the model serve APIs | |
| model_type | ModelType | The type of the served model | |
| model_description | str | [optional] | |
| model_card | Dict[str, object] | [optional] | |
| labels | Dict[str, str] | [optional] |
from cms_client.models.model_card import ModelCard
# TODO update the JSON string below
json = "{}"
# create an instance of ModelCard from a JSON string
model_card_instance = ModelCard.from_json(json)
# print the JSON string representation of the object
print(ModelCard.to_json())
# convert the object into a dict
model_card_dict = model_card_instance.to_dict()
# create an instance of ModelCard from a dict
model_card_from_dict = ModelCard.from_dict(model_card_dict)