Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.22 KB

File metadata and controls

31 lines (22 loc) · 1.22 KB

CreateCombinedSubmissionResponse

Properties

Name Type Description Notes
status str
combined_submission CombinedSubmission
errors List[str] [optional]

Example

from docspring.models.create_combined_submission_response import CreateCombinedSubmissionResponse

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

# convert the object into a dict
create_combined_submission_response_dict = create_combined_submission_response_instance.to_dict()
# create an instance of CreateCombinedSubmissionResponse from a dict
create_combined_submission_response_from_dict = CreateCombinedSubmissionResponse.from_dict(create_combined_submission_response_dict)

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