Google_LinkSpecialOffers
The Google Books Importer Google LinkSpecialOffers class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_GanService.php
- class Google_LinkSpecialOffers extends Google_Model {
- public $freeGift;
- public $freeShipping;
- protected $__freeShippingMinType = 'Google_Money';
- protected $__freeShippingMinDataType = '';
- public $freeShippingMin;
- public $percentOff;
- protected $__percentOffMinType = 'Google_Money';
- protected $__percentOffMinDataType = '';
- public $percentOffMin;
- protected $__priceCutType = 'Google_Money';
- protected $__priceCutDataType = '';
- public $priceCut;
- protected $__priceCutMinType = 'Google_Money';
- protected $__priceCutMinDataType = '';
- public $priceCutMin;
- public $promotionCodes;
- public function setFreeGift( $freeGift) {
- $this->freeGift = $freeGift;
- }
- public function getFreeGift() {
- return $this->freeGift;
- }
- public function setFreeShipping( $freeShipping) {
- $this->freeShipping = $freeShipping;
- }
- public function getFreeShipping() {
- return $this->freeShipping;
- }
- public function setFreeShippingMin(Google_Money $freeShippingMin) {
- $this->freeShippingMin = $freeShippingMin;
- }
- public function getFreeShippingMin() {
- return $this->freeShippingMin;
- }
- public function setPercentOff( $percentOff) {
- $this->percentOff = $percentOff;
- }
- public function getPercentOff() {
- return $this->percentOff;
- }
- public function setPercentOffMin(Google_Money $percentOffMin) {
- $this->percentOffMin = $percentOffMin;
- }
- public function getPercentOffMin() {
- return $this->percentOffMin;
- }
- public function setPriceCut(Google_Money $priceCut) {
- $this->priceCut = $priceCut;
- }
- public function getPriceCut() {
- return $this->priceCut;
- }
- public function setPriceCutMin(Google_Money $priceCutMin) {
- $this->priceCutMin = $priceCutMin;
- }
- public function getPriceCutMin() {
- return $this->priceCutMin;
- }
- public function setPromotionCodes(/** array(Google_string) */ $promotionCodes) {
- $this->assertIsArray($promotionCodes, 'Google_string', __METHOD__);
- $this->promotionCodes = $promotionCodes;
- }
- public function getPromotionCodes() {
- return $this->promotionCodes;
- }
- }