Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.41 KB

File metadata and controls

33 lines (25 loc) · 1.41 KB

ModuleExportDescription

Export parameters to export returned data from this process

Properties

Name Type Description Notes
name str A unique name for the parameter.
description str Detailed description to fully explain the entity.
optional bool Determines whether this parameter is mandatory. Default: true [optional]
default str The default value for this parameter. [optional]
var_schema ModuleParameterSchema

Example

from actinia_openapi_python_client.models.module_export_description import ModuleExportDescription

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

# convert the object into a dict
module_export_description_dict = module_export_description_instance.to_dict()
# create an instance of ModuleExportDescription from a dict
module_export_description_form_dict = module_export_description.from_dict(module_export_description_dict)

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