Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

OpenEditorRequest

Properties

Name Type Description Notes
data OpenEditorRequestData [optional]
language str Specify the editor UI language. Defaults to organization editor language. [optional]

Example

from pdf_generator_api_client.models.open_editor_request import OpenEditorRequest

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

# convert the object into a dict
open_editor_request_dict = open_editor_request_instance.to_dict()
# create an instance of OpenEditorRequest from a dict
open_editor_request_from_dict = OpenEditorRequest.from_dict(open_editor_request_dict)

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