checkpointId = $checkpointId; } /** * @return string */ public function getCheckpointId() { return $this->checkpointId; } /** * The epoch of the checkpoint. * * @param string $epoch */ public function setEpoch($epoch) { $this->epoch = $epoch; } /** * @return string */ public function getEpoch() { return $this->epoch; } /** * The step of the checkpoint. * * @param string $step */ public function setStep($step) { $this->step = $step; } /** * @return string */ public function getStep() { return $this->step; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudAiplatformV1ModelVersionCheckpoint::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1ModelVersionCheckpoint');