Skip to content

Files

Latest commit

114f104 · Feb 26, 2025

History

History
31 lines (22 loc) · 1.1 KB

CreateSubmissionResponse.md

File metadata and controls

31 lines (22 loc) · 1.1 KB

CreateSubmissionResponse

Properties

Name Type Description Notes
status str
submission SubmissionPreview
errors List[str] [optional]

Example

from docspring.models.create_submission_response import CreateSubmissionResponse

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

# convert the object into a dict
create_submission_response_dict = create_submission_response_instance.to_dict()
# create an instance of CreateSubmissionResponse from a dict
create_submission_response_from_dict = CreateSubmissionResponse.from_dict(create_submission_response_dict)

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