currencyCode = $currencyCode; } /** * @return string */ public function getCurrencyCode() { return $this->currencyCode; } /** * Resource name of this account. Format is accounts/{publisher_id}. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * The unique ID by which this publisher account can be identified in the API * requests (for example, pub-1234567890). * * @param string $publisherId */ public function setPublisherId($publisherId) { $this->publisherId = $publisherId; } /** * @return string */ public function getPublisherId() { return $this->publisherId; } /** * The time zone that is used in reports that are generated for this account. * The value is a time-zone ID as specified by the CLDR project, for example, * "America/Los_Angeles". * * @param string $reportingTimeZone */ public function setReportingTimeZone($reportingTimeZone) { $this->reportingTimeZone = $reportingTimeZone; } /** * @return string */ public function getReportingTimeZone() { return $this->reportingTimeZone; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PublisherAccount::class, 'Google_Service_AdMob_PublisherAccount');