Skip to content

Latest commit

History

History
30 lines (21 loc) · 969 Bytes

File metadata and controls

30 lines (21 loc) · 969 Bytes

FormActionStore

Key-value pair of action configuration.

Properties

NameTypeDescriptionNotes
store_documentbool[optional]

Example

frompdf_generator_api_client.models.form_action_storeimportFormActionStore# TODO update the JSON string belowjson="{}"# create an instance of FormActionStore from a JSON stringform_action_store_instance=FormActionStore.from_json(json)
# print the JSON string representation of the objectprint(FormActionStore.to_json())
# convert the object into a dictform_action_store_dict=form_action_store_instance.to_dict()
# create an instance of FormActionStore from a dictform_action_store_from_dict=FormActionStore.from_dict(form_action_store_dict)

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