Number of seconds before end time to send the warning signal
| Name | Type | Description | Notes |
|---|---|---|---|
| set | bool | True if number has been set; False if number is unset | [optional] |
| infinite | bool | True if number has been set to infinite; "set" and "number" will be ignored | [optional] |
| number | int | If "set" is True the number will be set with value; otherwise ignore number contents | [optional] |
from slurmrest_python.models.v0041_job_desc_msg_kill_warning_delay import V0041JobDescMsgKillWarningDelay
# TODO update the JSON string below
json = "{}"
# create an instance of V0041JobDescMsgKillWarningDelay from a JSON string
v0041_job_desc_msg_kill_warning_delay_instance = V0041JobDescMsgKillWarningDelay.from_json(json)
# print the JSON string representation of the object
print(V0041JobDescMsgKillWarningDelay.to_json())
# convert the object into a dict
v0041_job_desc_msg_kill_warning_delay_dict = v0041_job_desc_msg_kill_warning_delay_instance.to_dict()
# create an instance of V0041JobDescMsgKillWarningDelay from a dict
v0041_job_desc_msg_kill_warning_delay_from_dict = V0041JobDescMsgKillWarningDelay.from_dict(v0041_job_desc_msg_kill_warning_delay_dict)