Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 987 Bytes

File metadata and controls

29 lines (20 loc) · 987 Bytes

ResponseShape3

Optional structured extraction schema. Natural language or JSON schema. Example: 'Extract API version, deprecated methods, and example code'

Properties

Name Type Description Notes

Example

from mixpeek.models.response_shape3 import ResponseShape3

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

# convert the object into a dict
response_shape3_dict = response_shape3_instance.to_dict()
# create an instance of ResponseShape3 from a dict
response_shape3_from_dict = ResponseShape3.from_dict(response_shape3_dict)

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