Skip to content
This repository was archived by the owner on Oct 12, 2025. It is now read-only.

Latest commit

 

History

History
executable file
·
30 lines (21 loc) · 977 Bytes

File metadata and controls

executable file
·
30 lines (21 loc) · 977 Bytes

JobAppOptions

Properties

Name Type Description Notes
app_options object Application specific options to update
config JobConfiguration

Example

from epiccore.models.job_app_options import JobAppOptions

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

# convert the object into a dict
job_app_options_dict = job_app_options_instance.to_dict()
# create an instance of JobAppOptions from a dict
job_app_options_form_dict = job_app_options.from_dict(job_app_options_dict)

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