column = $column; } /** * @return string */ public function getColumn() { return $this->column; } /** * Maximum number of windows that should be generated across all time series. * * @param string $maxCount */ public function setMaxCount($maxCount) { $this->maxCount = $maxCount; } /** * @return string */ public function getMaxCount() { return $this->maxCount; } /** * Stride length used to generate input examples. Within one time series, * every {$STRIDE_LENGTH} rows will be used to generate a sliding window. * * @param string $strideLength */ public function setStrideLength($strideLength) { $this->strideLength = $strideLength; } /** * @return string */ public function getStrideLength() { return $this->strideLength; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudAiplatformV1SchemaTrainingjobDefinitionWindowConfig::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1SchemaTrainingjobDefinitionWindowConfig');