| Name | Type | Description | Notes |
|---|---|---|---|
| job_id | int | Job ID of job array, or 0 if N/A | [optional] |
| limits | V0040JobArrayLimits | [optional] | |
| task_id | V0040Uint32NoVal | [optional] | |
| task | str | String expression of task IDs in this record | [optional] |
from slurm_api_client.models.v0040_job_array import V0040JobArray
# TODO update the JSON string below
json = "{}"
# create an instance of V0040JobArray from a JSON string
v0040_job_array_instance = V0040JobArray.from_json(json)
# print the JSON string representation of the object
print(V0040JobArray.to_json())
# convert the object into a dict
v0040_job_array_dict = v0040_job_array_instance.to_dict()
# create an instance of V0040JobArray from a dict
v0040_job_array_from_dict = V0040JobArray.from_dict(v0040_job_array_dict)