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 MarketplaceNote extends \Google\Model 21{ 22 public $creatorRole; 23 public $dealId; 24 public $kind; 25 public $note; 26 public $noteId; 27 public $proposalId; 28 public $proposalRevisionNumber; 29 public $timestampMs; 30 31 public function setCreatorRole($creatorRole) 32 { 33 $this->creatorRole = $creatorRole; 34 } 35 public function getCreatorRole() 36 { 37 return $this->creatorRole; 38 } 39 public function setDealId($dealId) 40 { 41 $this->dealId = $dealId; 42 } 43 public function getDealId() 44 { 45 return $this->dealId; 46 } 47 public function setKind($kind) 48 { 49 $this->kind = $kind; 50 } 51 public function getKind() 52 { 53 return $this->kind; 54 } 55 public function setNote($note) 56 { 57 $this->note = $note; 58 } 59 public function getNote() 60 { 61 return $this->note; 62 } 63 public function setNoteId($noteId) 64 { 65 $this->noteId = $noteId; 66 } 67 public function getNoteId() 68 { 69 return $this->noteId; 70 } 71 public function setProposalId($proposalId) 72 { 73 $this->proposalId = $proposalId; 74 } 75 public function getProposalId() 76 { 77 return $this->proposalId; 78 } 79 public function setProposalRevisionNumber($proposalRevisionNumber) 80 { 81 $this->proposalRevisionNumber = $proposalRevisionNumber; 82 } 83 public function getProposalRevisionNumber() 84 { 85 return $this->proposalRevisionNumber; 86 } 87 public function setTimestampMs($timestampMs) 88 { 89 $this->timestampMs = $timestampMs; 90 } 91 public function getTimestampMs() 92 { 93 return $this->timestampMs; 94 } 95} 96 97// Adding a class alias for backwards compatibility with the previous class name. 98class_alias(MarketplaceNote::class, 'Google_Service_AdExchangeBuyer_MarketplaceNote'); 99