Package com.acumenvelocity.ath.model
Class TrainingStatusResponse
- java.lang.Object
-
- com.acumenvelocity.ath.model.TrainingStatusResponse
-
@Generated(value="org.openapitools.codegen.languages.JavaInflectorServerCodegen", comments="Generator version: 7.15.0") public class TrainingStatusResponse extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTrainingStatusResponse.StatusEnumCurrent status of the training job.
-
Constructor Summary
Constructors Constructor Description TrainingStatusResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TrainingStatusResponsecurrentPhase(String currentPhase)Human-readable description of current training phase.booleanequals(Object o)StringgetCurrentPhase()IntegergetProgress()DategetStartedAt()TrainingStatusResponse.StatusEnumgetStatus()UUIDgetTrainingJobId()inthashCode()TrainingStatusResponseprogress(Integer progress)Training progress percentage.voidsetCurrentPhase(String currentPhase)voidsetProgress(Integer progress)voidsetStartedAt(Date startedAt)voidsetStatus(TrainingStatusResponse.StatusEnum status)voidsetTrainingJobId(UUID trainingJobId)TrainingStatusResponsestartedAt(Date startedAt)Timestamp when training started.TrainingStatusResponsestatus(TrainingStatusResponse.StatusEnum status)Current status of the training job.StringtoString()TrainingStatusResponsetrainingJobId(UUID trainingJobId)Unique identifier of the training job.
-
-
-
Method Detail
-
status
public TrainingStatusResponse status(TrainingStatusResponse.StatusEnum status)
Current status of the training job.
-
getStatus
public TrainingStatusResponse.StatusEnum getStatus()
-
setStatus
public void setStatus(TrainingStatusResponse.StatusEnum status)
-
trainingJobId
public TrainingStatusResponse trainingJobId(UUID trainingJobId)
Unique identifier of the training job.
-
getTrainingJobId
public UUID getTrainingJobId()
-
setTrainingJobId
public void setTrainingJobId(UUID trainingJobId)
-
progress
public TrainingStatusResponse progress(Integer progress)
Training progress percentage. minimum: 0 maximum: 100
-
getProgress
public Integer getProgress()
-
setProgress
public void setProgress(Integer progress)
-
startedAt
public TrainingStatusResponse startedAt(Date startedAt)
Timestamp when training started.
-
getStartedAt
public Date getStartedAt()
-
setStartedAt
public void setStartedAt(Date startedAt)
-
currentPhase
public TrainingStatusResponse currentPhase(String currentPhase)
Human-readable description of current training phase.
-
getCurrentPhase
public String getCurrentPhase()
-
setCurrentPhase
public void setCurrentPhase(String currentPhase)
-
-