Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.21 KB

File metadata and controls

29 lines (20 loc) · 1.21 KB

GetSystemInferenceModelsResponse

Properties

Name Type Description Notes
inference_models List[SystemInferenceModel] List of system inference models [optional]

Example

from formkiq_client.models.get_system_inference_models_response import GetSystemInferenceModelsResponse

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

# convert the object into a dict
get_system_inference_models_response_dict = get_system_inference_models_response_instance.to_dict()
# create an instance of GetSystemInferenceModelsResponse from a dict
get_system_inference_models_response_from_dict = GetSystemInferenceModelsResponse.from_dict(get_system_inference_models_response_dict)

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