1<?php 2/* 3 * Copyright 2014 Google Inc. 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not 6 * use this file except in compliance with the License. You may obtain a copy of 7 * the License at 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 14 * License for the specific language governing permissions and limitations under 15 * the License. 16 */ 17 18namespace Google\Service\AdExchangeBuyer; 19 20class DealTermsGuaranteedFixedPriceTermsBillingInfo extends \Google\Model 21{ 22 public $currencyConversionTimeMs; 23 public $dfpLineItemId; 24 public $originalContractedQuantity; 25 protected $priceType = Price::class; 26 protected $priceDataType = ''; 27 28 public function setCurrencyConversionTimeMs($currencyConversionTimeMs) 29 { 30 $this->currencyConversionTimeMs = $currencyConversionTimeMs; 31 } 32 public function getCurrencyConversionTimeMs() 33 { 34 return $this->currencyConversionTimeMs; 35 } 36 public function setDfpLineItemId($dfpLineItemId) 37 { 38 $this->dfpLineItemId = $dfpLineItemId; 39 } 40 public function getDfpLineItemId() 41 { 42 return $this->dfpLineItemId; 43 } 44 public function setOriginalContractedQuantity($originalContractedQuantity) 45 { 46 $this->originalContractedQuantity = $originalContractedQuantity; 47 } 48 public function getOriginalContractedQuantity() 49 { 50 return $this->originalContractedQuantity; 51 } 52 /** 53 * @param Price 54 */ 55 public function setPrice(Price $price) 56 { 57 $this->price = $price; 58 } 59 /** 60 * @return Price 61 */ 62 public function getPrice() 63 { 64 return $this->price; 65 } 66} 67 68// Adding a class alias for backwards compatibility with the previous class name. 69class_alias(DealTermsGuaranteedFixedPriceTermsBillingInfo::class, 'Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTermsBillingInfo'); 70