Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.09 KB

File metadata and controls

31 lines (22 loc) · 1.09 KB

CreateCustomFileResponse

Properties

Name Type Description Notes
status str
custom_file CustomFile
errors List[str] [optional]

Example

from docspring.models.create_custom_file_response import CreateCustomFileResponse

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

# convert the object into a dict
create_custom_file_response_dict = create_custom_file_response_instance.to_dict()
# create an instance of CreateCustomFileResponse from a dict
create_custom_file_response_from_dict = CreateCustomFileResponse.from_dict(create_custom_file_response_dict)

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