Skip to content

SubPlanExecutionOptions

Properties

NameTypeDescriptionNotes
custom_scriptstr[optional]

Example

python
from syntheticusers.models.sub_plan_execution_options import SubPlanExecutionOptions

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

# convert the object into a dict
sub_plan_execution_options_dict = sub_plan_execution_options_instance.to_dict()
# create an instance of SubPlanExecutionOptions from a dict
sub_plan_execution_options_from_dict = SubPlanExecutionOptions.from_dict(sub_plan_execution_options_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.