Google_VolumeSaleInfo
The Google Pagespeed Insights Google VolumeSaleInfo class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_BooksService.php
- class Google_VolumeSaleInfo extends Google_Model {
- public $country;
- protected $__retailPriceType = 'Google_VolumeSaleInfoRetailPrice';
- protected $__retailPriceDataType = '';
- public $retailPrice;
- public $isEbook;
- public $saleability;
- public $buyLink;
- public $onSaleDate;
- protected $__listPriceType = 'Google_VolumeSaleInfoListPrice';
- protected $__listPriceDataType = '';
- public $listPrice;
- public function setCountry($country) {
- $this->country = $country;
- }
- public function getCountry() {
- return $this->country;
- }
- public function setRetailPrice(Google_VolumeSaleInfoRetailPrice $retailPrice) {
- $this->retailPrice = $retailPrice;
- }
- public function getRetailPrice() {
- return $this->retailPrice;
- }
- public function setIsEbook($isEbook) {
- $this->isEbook = $isEbook;
- }
- public function getIsEbook() {
- return $this->isEbook;
- }
- public function setSaleability($saleability) {
- $this->saleability = $saleability;
- }
- public function getSaleability() {
- return $this->saleability;
- }
- public function setBuyLink($buyLink) {
- $this->buyLink = $buyLink;
- }
- public function getBuyLink() {
- return $this->buyLink;
- }
- public function setOnSaleDate($onSaleDate) {
- $this->onSaleDate = $onSaleDate;
- }
- public function getOnSaleDate() {
- return $this->onSaleDate;
- }
- public function setListPrice(Google_VolumeSaleInfoListPrice $listPrice) {
- $this->listPrice = $listPrice;
- }
- public function getListPrice() {
- return $this->listPrice;
- }
- }