Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.27 KB

RestColServiceCreateDocumentBody.md

File metadata and controls

31 lines (22 loc) · 1.27 KB

RestColServiceCreateDocumentBody

Properties

Name Type Description Notes
document_id str [optional]
data bytearray [optional]
dataformat ApiDataFormat [optional] [default to ApiDataFormat.UNKNOWN]

Example

from openapi_client.models.rest_col_service_create_document_body import RestColServiceCreateDocumentBody

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

# convert the object into a dict
rest_col_service_create_document_body_dict = rest_col_service_create_document_body_instance.to_dict()
# create an instance of RestColServiceCreateDocumentBody from a dict
rest_col_service_create_document_body_from_dict = RestColServiceCreateDocumentBody.from_dict(rest_col_service_create_document_body_dict)

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