introductoryPriceAmountMicros = $introductoryPriceAmountMicros; } /** * @return string */ public function getIntroductoryPriceAmountMicros() { return $this->introductoryPriceAmountMicros; } /** * ISO 4217 currency code for the introductory subscription price. For * example, if the price is specified in British pounds sterling, * price_currency_code is "GBP". * * @param string $introductoryPriceCurrencyCode */ public function setIntroductoryPriceCurrencyCode($introductoryPriceCurrencyCode) { $this->introductoryPriceCurrencyCode = $introductoryPriceCurrencyCode; } /** * @return string */ public function getIntroductoryPriceCurrencyCode() { return $this->introductoryPriceCurrencyCode; } /** * The number of billing period to offer introductory pricing. * * @param int $introductoryPriceCycles */ public function setIntroductoryPriceCycles($introductoryPriceCycles) { $this->introductoryPriceCycles = $introductoryPriceCycles; } /** * @return int */ public function getIntroductoryPriceCycles() { return $this->introductoryPriceCycles; } /** * Introductory price period, specified in ISO 8601 format. Common values are * (but not limited to) "P1W" (one week), "P1M" (one month), "P3M" (three * months), "P6M" (six months), and "P1Y" (one year). * * @param string $introductoryPricePeriod */ public function setIntroductoryPricePeriod($introductoryPricePeriod) { $this->introductoryPricePeriod = $introductoryPricePeriod; } /** * @return string */ public function getIntroductoryPricePeriod() { return $this->introductoryPricePeriod; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(IntroductoryPriceInfo::class, 'Google_Service_AndroidPublisher_IntroductoryPriceInfo');