Package org.openapitools.client.model
Class SetJobRetriesDto
- java.lang.Object
-
- org.openapitools.client.model.SetJobRetriesDto
-
public class SetJobRetriesDto extends Object
Defines the number of retries for a selection of jobs. Please note that if both jobIds and jobQuery are provided, then retries will be set on the union of these sets.
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_JOB_IDSstatic StringSERIALIZED_NAME_JOB_QUERYstatic StringSERIALIZED_NAME_RETRIES
-
Constructor Summary
Constructors Constructor Description SetJobRetriesDto()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SetJobRetriesDtoaddJobIdsItem(String jobIdsItem)booleanequals(Object o)List<String>getJobIds()A list of job ids to set retries for.JobQueryDtogetJobQuery()Get jobQueryIntegergetRetries()An integer representing the number of retries.inthashCode()SetJobRetriesDtojobIds(List<String> jobIds)SetJobRetriesDtojobQuery(JobQueryDto jobQuery)SetJobRetriesDtoretries(Integer retries)voidsetJobIds(List<String> jobIds)voidsetJobQuery(JobQueryDto jobQuery)voidsetRetries(Integer retries)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_JOB_IDS
public static final String SERIALIZED_NAME_JOB_IDS
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_JOB_QUERY
public static final String SERIALIZED_NAME_JOB_QUERY
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_RETRIES
public static final String SERIALIZED_NAME_RETRIES
- See Also:
- Constant Field Values
-
-
Method Detail
-
jobIds
public SetJobRetriesDto jobIds(List<String> jobIds)
-
addJobIdsItem
public SetJobRetriesDto addJobIdsItem(String jobIdsItem)
-
jobQuery
public SetJobRetriesDto jobQuery(JobQueryDto jobQuery)
-
getJobQuery
public JobQueryDto getJobQuery()
Get jobQuery- Returns:
- jobQuery
-
setJobQuery
public void setJobQuery(JobQueryDto jobQuery)
-
retries
public SetJobRetriesDto retries(Integer retries)
-
getRetries
public Integer getRetries()
An integer representing the number of retries. Please note that the value cannot be negative or null. minimum: 0- Returns:
- retries
-
setRetries
public void setRetries(Integer retries)
-
-