approvedCountries = $approvedCountries; } /** * @return string[] */ public function getApprovedCountries() { return $this->approvedCountries; } /** * The name of the destination * * @param string $destination */ public function setDestination($destination) { $this->destination = $destination; } /** * @return string */ public function getDestination() { return $this->destination; } /** * Country codes (ISO 3166-1 alpha-2) where the collection is disapproved. * * @param string[] $disapprovedCountries */ public function setDisapprovedCountries($disapprovedCountries) { $this->disapprovedCountries = $disapprovedCountries; } /** * @return string[] */ public function getDisapprovedCountries() { return $this->disapprovedCountries; } /** * Country codes (ISO 3166-1 alpha-2) where the collection is pending * approval. * * @param string[] $pendingCountries */ public function setPendingCountries($pendingCountries) { $this->pendingCountries = $pendingCountries; } /** * @return string[] */ public function getPendingCountries() { return $this->pendingCountries; } /** * The status for the specified destination in the collections target country. * * @param string $status */ public function setStatus($status) { $this->status = $status; } /** * @return string */ public function getStatus() { return $this->status; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CollectionStatusDestinationStatus::class, 'Google_Service_ShoppingContent_CollectionStatusDestinationStatus');