Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.22 KB

File metadata and controls

33 lines (24 loc) · 1.22 KB

AvailableOrgModelsResponse

Response for listing available org models.

Properties

Name Type Description Notes
success bool [optional] [default to True]
models List[AvailableOrgModelItem]
total int
namespace_id str

Example

from mixpeek.models.available_org_models_response import AvailableOrgModelsResponse

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

# convert the object into a dict
available_org_models_response_dict = available_org_models_response_instance.to_dict()
# create an instance of AvailableOrgModelsResponse from a dict
available_org_models_response_from_dict = AvailableOrgModelsResponse.from_dict(available_org_models_response_dict)

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