Name | Type | Description | Notes |
---|---|---|---|
required | bool | Is authorisation required for this job? | [optional] [readonly] |
state | str | [optional] | |
job | JobSummary | [optional] | |
user_profile | UserName | [optional] | |
permissions | str | [optional] [readonly] |
from epiccore.models.job_auth_status import JobAuthStatus
# TODO update the JSON string below
json = "{}"
# create an instance of JobAuthStatus from a JSON string
job_auth_status_instance = JobAuthStatus.from_json(json)
# print the JSON string representation of the object
print JobAuthStatus.to_json()
# convert the object into a dict
job_auth_status_dict = job_auth_status_instance.to_dict()
# create an instance of JobAuthStatus from a dict
job_auth_status_form_dict = job_auth_status.from_dict(job_auth_status_dict)