dfpNetworkCode = $dfpNetworkCode; } /** * @return string */ public function getDfpNetworkCode() { return $this->dfpNetworkCode; } /** * Ad Manager network name for this directory site. * * @param string $dfpNetworkName */ public function setDfpNetworkName($dfpNetworkName) { $this->dfpNetworkName = $dfpNetworkName; } /** * @return string */ public function getDfpNetworkName() { return $this->dfpNetworkName; } /** * Whether this directory site accepts programmatic placements. * * @param bool $programmaticPlacementAccepted */ public function setProgrammaticPlacementAccepted($programmaticPlacementAccepted) { $this->programmaticPlacementAccepted = $programmaticPlacementAccepted; } /** * @return bool */ public function getProgrammaticPlacementAccepted() { return $this->programmaticPlacementAccepted; } /** * Whether this directory site accepts publisher-paid tags. * * @param bool $pubPaidPlacementAccepted */ public function setPubPaidPlacementAccepted($pubPaidPlacementAccepted) { $this->pubPaidPlacementAccepted = $pubPaidPlacementAccepted; } /** * @return bool */ public function getPubPaidPlacementAccepted() { return $this->pubPaidPlacementAccepted; } /** * Whether this directory site is available only via Publisher Portal. * * @param bool $publisherPortalOnly */ public function setPublisherPortalOnly($publisherPortalOnly) { $this->publisherPortalOnly = $publisherPortalOnly; } /** * @return bool */ public function getPublisherPortalOnly() { return $this->publisherPortalOnly; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DfpSettings::class, 'Google_Service_Dfareporting_DfpSettings');