arrayElementType = $arrayElementType; } /** * @return StandardSqlDataType */ public function getArrayElementType() { return $this->arrayElementType; } /** * @param StandardSqlStructType */ public function setStructType(StandardSqlStructType $structType) { $this->structType = $structType; } /** * @return StandardSqlStructType */ public function getStructType() { return $this->structType; } /** * @param string */ public function setTypeKind($typeKind) { $this->typeKind = $typeKind; } /** * @return string */ public function getTypeKind() { return $this->typeKind; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(StandardSqlDataType::class, 'Google_Service_Bigquery_StandardSqlDataType');