Package org.openapitools.client.model
Class HistoricActivityStatisticsDto
- java.lang.Object
-
- org.openapitools.client.model.HistoricActivityStatisticsDto
-
public class HistoricActivityStatisticsDto extends Object
HistoricActivityStatisticsDto
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_CANCELEDstatic StringSERIALIZED_NAME_COMPLETE_SCOPEstatic StringSERIALIZED_NAME_DELETED_INCIDENTSstatic StringSERIALIZED_NAME_FINISHEDstatic StringSERIALIZED_NAME_IDstatic StringSERIALIZED_NAME_INSTANCESstatic StringSERIALIZED_NAME_OPEN_INCIDENTSstatic StringSERIALIZED_NAME_RESOLVED_INCIDENTS
-
Constructor Summary
Constructors Constructor Description HistoricActivityStatisticsDto()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description HistoricActivityStatisticsDtocanceled(Long canceled)HistoricActivityStatisticsDtocompleteScope(Long completeScope)HistoricActivityStatisticsDtodeletedIncidents(Long deletedIncidents)booleanequals(Object o)HistoricActivityStatisticsDtofinished(Long finished)LonggetCanceled()The total number of all canceled instances of the activity.LonggetCompleteScope()The total number of all instances which completed a scope of the activity.LonggetDeletedIncidents()The total number of deleted incidents for the activity.LonggetFinished()The total number of all finished instances of the activity.StringgetId()The id of the activity the results are aggregated for.LonggetInstances()The total number of all running instances of the activity.LonggetOpenIncidents()The total number of open incidents for the activity.LonggetResolvedIncidents()The total number of resolved incidents for the activity.inthashCode()HistoricActivityStatisticsDtoid(String id)HistoricActivityStatisticsDtoinstances(Long instances)HistoricActivityStatisticsDtoopenIncidents(Long openIncidents)HistoricActivityStatisticsDtoresolvedIncidents(Long resolvedIncidents)voidsetCanceled(Long canceled)voidsetCompleteScope(Long completeScope)voidsetDeletedIncidents(Long deletedIncidents)voidsetFinished(Long finished)voidsetId(String id)voidsetInstances(Long instances)voidsetOpenIncidents(Long openIncidents)voidsetResolvedIncidents(Long resolvedIncidents)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_ID
public static final String SERIALIZED_NAME_ID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_INSTANCES
public static final String SERIALIZED_NAME_INSTANCES
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_CANCELED
public static final String SERIALIZED_NAME_CANCELED
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_FINISHED
public static final String SERIALIZED_NAME_FINISHED
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_COMPLETE_SCOPE
public static final String SERIALIZED_NAME_COMPLETE_SCOPE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_OPEN_INCIDENTS
public static final String SERIALIZED_NAME_OPEN_INCIDENTS
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_RESOLVED_INCIDENTS
public static final String SERIALIZED_NAME_RESOLVED_INCIDENTS
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_DELETED_INCIDENTS
public static final String SERIALIZED_NAME_DELETED_INCIDENTS
- See Also:
- Constant Field Values
-
-
Method Detail
-
id
public HistoricActivityStatisticsDto id(String id)
-
getId
public String getId()
The id of the activity the results are aggregated for.- Returns:
- id
-
setId
public void setId(String id)
-
instances
public HistoricActivityStatisticsDto instances(Long instances)
-
getInstances
public Long getInstances()
The total number of all running instances of the activity.- Returns:
- instances
-
setInstances
public void setInstances(Long instances)
-
canceled
public HistoricActivityStatisticsDto canceled(Long canceled)
-
getCanceled
public Long getCanceled()
The total number of all canceled instances of the activity. **Note:** Will be `0` (not `null`), if canceled activity instances were excluded.- Returns:
- canceled
-
setCanceled
public void setCanceled(Long canceled)
-
finished
public HistoricActivityStatisticsDto finished(Long finished)
-
getFinished
public Long getFinished()
The total number of all finished instances of the activity. **Note:** Will be `0` (not `null`), if finished activity instances were excluded.- Returns:
- finished
-
setFinished
public void setFinished(Long finished)
-
completeScope
public HistoricActivityStatisticsDto completeScope(Long completeScope)
-
getCompleteScope
public Long getCompleteScope()
The total number of all instances which completed a scope of the activity. **Note:** Will be `0` (not `null`), if activity instances which completed a scope were excluded.- Returns:
- completeScope
-
setCompleteScope
public void setCompleteScope(Long completeScope)
-
openIncidents
public HistoricActivityStatisticsDto openIncidents(Long openIncidents)
-
getOpenIncidents
public Long getOpenIncidents()
The total number of open incidents for the activity. **Note:** Will be `0` (not `null`), if `incidents` is set to `false`.- Returns:
- openIncidents
-
setOpenIncidents
public void setOpenIncidents(Long openIncidents)
-
resolvedIncidents
public HistoricActivityStatisticsDto resolvedIncidents(Long resolvedIncidents)
-
getResolvedIncidents
public Long getResolvedIncidents()
The total number of resolved incidents for the activity. **Note:** Will be `0` (not `null`), if `incidents` is set to `false`.- Returns:
- resolvedIncidents
-
setResolvedIncidents
public void setResolvedIncidents(Long resolvedIncidents)
-
deletedIncidents
public HistoricActivityStatisticsDto deletedIncidents(Long deletedIncidents)
-
getDeletedIncidents
public Long getDeletedIncidents()
The total number of deleted incidents for the activity. **Note:** Will be `0` (not `null`), if `incidents` is set to `false`.- Returns:
- deletedIncidents
-
setDeletedIncidents
public void setDeletedIncidents(Long deletedIncidents)
-
-