Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.2 KB

AddGoogleDocumentExportRequest.md

File metadata and controls

30 lines (21 loc) · 1.2 KB

AddGoogleDocumentExportRequest

Properties

Name Type Description Notes
path str Path of exported file [optional]
output_type GoogleExportOutputType [optional]

Example

from formkiq_client.models.add_google_document_export_request import AddGoogleDocumentExportRequest

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

# convert the object into a dict
add_google_document_export_request_dict = add_google_document_export_request_instance.to_dict()
# create an instance of AddGoogleDocumentExportRequest from a dict
add_google_document_export_request_from_dict = AddGoogleDocumentExportRequest.from_dict(add_google_document_export_request_dict)

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