Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.62 KB

File metadata and controls

34 lines (25 loc) · 1.62 KB

OptimizeDocument201ResponseMeta

Properties

Name Type Description Notes
name str Document name. This value is automatically generated if name attribute is not defined in request. [optional]
display_name str Document name without the file extension. [optional]
encoding str Document encoding [optional]
content_type str Document content type. [optional]
stats OptimizeDocument201ResponseMetaStats [optional]
public_id str Document public id, if output=url was used for document storage [optional]

Example

from pdf_generator_api_client.models.optimize_document201_response_meta import OptimizeDocument201ResponseMeta

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

# convert the object into a dict
optimize_document201_response_meta_dict = optimize_document201_response_meta_instance.to_dict()
# create an instance of OptimizeDocument201ResponseMeta from a dict
optimize_document201_response_meta_from_dict = OptimizeDocument201ResponseMeta.from_dict(optimize_document201_response_meta_dict)

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