Google_EventProducts
The Google Pagespeed Insights Google EventProducts class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_GanService.php
- class Google_EventProducts extends Google_Model {
- protected $__networkFeeType = 'Google_Money';
- protected $__networkFeeDataType = '';
- public $networkFee;
- public $sku;
- public $categoryName;
- public $skuName;
- protected $__publisherFeeType = 'Google_Money';
- protected $__publisherFeeDataType = '';
- public $publisherFee;
- protected $__earningsType = 'Google_Money';
- protected $__earningsDataType = '';
- public $earnings;
- protected $__unitPriceType = 'Google_Money';
- protected $__unitPriceDataType = '';
- public $unitPrice;
- public $categoryId;
- public $quantity;
- public function setNetworkFee(Google_Money $networkFee) {
- $this->networkFee = $networkFee;
- }
- public function getNetworkFee() {
- return $this->networkFee;
- }
- public function setSku($sku) {
- $this->sku = $sku;
- }
- public function getSku() {
- return $this->sku;
- }
- public function setCategoryName($categoryName) {
- $this->categoryName = $categoryName;
- }
- public function getCategoryName() {
- return $this->categoryName;
- }
- public function setSkuName($skuName) {
- $this->skuName = $skuName;
- }
- public function getSkuName() {
- return $this->skuName;
- }
- public function setPublisherFee(Google_Money $publisherFee) {
- $this->publisherFee = $publisherFee;
- }
- public function getPublisherFee() {
- return $this->publisherFee;
- }
- public function setEarnings(Google_Money $earnings) {
- $this->earnings = $earnings;
- }
- public function getEarnings() {
- return $this->earnings;
- }
- public function setUnitPrice(Google_Money $unitPrice) {
- $this->unitPrice = $unitPrice;
- }
- public function getUnitPrice() {
- return $this->unitPrice;
- }
- public function setCategoryId($categoryId) {
- $this->categoryId = $categoryId;
- }
- public function getCategoryId() {
- return $this->categoryId;
- }
- public function setQuantity($quantity) {
- $this->quantity = $quantity;
- }
- public function getQuantity() {
- return $this->quantity;
- }
- }