Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

FastGPT200Response

A response with a description and results references used

Properties

Name Type Description Notes
meta Meta [optional]
data FastGPT200ResponseData [optional]

Example

from openapi_client.models.fast_gpt200_response import FastGPT200Response

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

# convert the object into a dict
fast_gpt200_response_dict = fast_gpt200_response_instance.to_dict()
# create an instance of FastGPT200Response from a dict
fast_gpt200_response_from_dict = FastGPT200Response.from_dict(fast_gpt200_response_dict)

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