charset = $charset; } /** * @return string */ public function getCharset() { return $this->charset; } /** * Output only. The list of column names in the content source. * * @param string[] $fieldNames */ public function setFieldNames($fieldNames) { $this->fieldNames = $fieldNames; } /** * @return string[] */ public function getFieldNames() { return $this->fieldNames; } /** * Output only. The number of rows in the content source. * * @param int $rowNumber */ public function setRowNumber($rowNumber) { $this->rowNumber = $rowNumber; } /** * @return int */ public function getRowNumber() { return $this->rowNumber; } /** * Output only. The separator of the content source. * * @param string $separator */ public function setSeparator($separator) { $this->separator = $separator; } /** * @return string */ public function getSeparator() { return $this->separator; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ContentSourceMetaData::class, 'Google_Service_Dfareporting_ContentSourceMetaData');