attributeLanguage = $attributeLanguage; } /** * @return string */ public function getAttributeLanguage() { return $this->attributeLanguage; } /** * Required. The type of data feed. For product inventory feeds, only feeds * for local stores, not online stores, are supported. Acceptable values are: * - "`local products`" - "`product inventory`" - "`products`" * * @param string $contentType */ public function setContentType($contentType) { $this->contentType = $contentType; } /** * @return string */ public function getContentType() { return $this->contentType; } /** * Fetch schedule for the feed file. * * @param DatafeedFetchSchedule $fetchSchedule */ public function setFetchSchedule(DatafeedFetchSchedule $fetchSchedule) { $this->fetchSchedule = $fetchSchedule; } /** * @return DatafeedFetchSchedule */ public function getFetchSchedule() { return $this->fetchSchedule; } /** * Required. The filename of the feed. All feeds must have a unique file name. * * @param string $fileName */ public function setFileName($fileName) { $this->fileName = $fileName; } /** * @return string */ public function getFileName() { return $this->fileName; } /** * Format of the feed file. * * @param DatafeedFormat $format */ public function setFormat(DatafeedFormat $format) { $this->format = $format; } /** * @return DatafeedFormat */ public function getFormat() { return $this->format; } /** * Required for update. The ID of the data feed. * * @param string $id */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * Identifies what kind of resource this is. Value: the fixed string * "`content#datafeed`" * * @param string $kind */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * Required for insert. A descriptive name of the data feed. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * The targets this feed should apply to (country, language, destinations). * * @param DatafeedTarget[] $targets */ public function setTargets($targets) { $this->targets = $targets; } /** * @return DatafeedTarget[] */ public function getTargets() { return $this->targets; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Datafeed::class, 'Google_Service_ShoppingContent_Datafeed');