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
18class Google_Service_AndroidPublisher_ProductPurchase extends Google_Model
19{
20  public $acknowledgementState;
21  public $consumptionState;
22  public $developerPayload;
23  public $kind;
24  public $obfuscatedExternalAccountId;
25  public $obfuscatedExternalProfileId;
26  public $orderId;
27  public $productId;
28  public $purchaseState;
29  public $purchaseTimeMillis;
30  public $purchaseToken;
31  public $purchaseType;
32  public $quantity;
33  public $regionCode;
34
35  public function setAcknowledgementState($acknowledgementState)
36  {
37    $this->acknowledgementState = $acknowledgementState;
38  }
39  public function getAcknowledgementState()
40  {
41    return $this->acknowledgementState;
42  }
43  public function setConsumptionState($consumptionState)
44  {
45    $this->consumptionState = $consumptionState;
46  }
47  public function getConsumptionState()
48  {
49    return $this->consumptionState;
50  }
51  public function setDeveloperPayload($developerPayload)
52  {
53    $this->developerPayload = $developerPayload;
54  }
55  public function getDeveloperPayload()
56  {
57    return $this->developerPayload;
58  }
59  public function setKind($kind)
60  {
61    $this->kind = $kind;
62  }
63  public function getKind()
64  {
65    return $this->kind;
66  }
67  public function setObfuscatedExternalAccountId($obfuscatedExternalAccountId)
68  {
69    $this->obfuscatedExternalAccountId = $obfuscatedExternalAccountId;
70  }
71  public function getObfuscatedExternalAccountId()
72  {
73    return $this->obfuscatedExternalAccountId;
74  }
75  public function setObfuscatedExternalProfileId($obfuscatedExternalProfileId)
76  {
77    $this->obfuscatedExternalProfileId = $obfuscatedExternalProfileId;
78  }
79  public function getObfuscatedExternalProfileId()
80  {
81    return $this->obfuscatedExternalProfileId;
82  }
83  public function setOrderId($orderId)
84  {
85    $this->orderId = $orderId;
86  }
87  public function getOrderId()
88  {
89    return $this->orderId;
90  }
91  public function setProductId($productId)
92  {
93    $this->productId = $productId;
94  }
95  public function getProductId()
96  {
97    return $this->productId;
98  }
99  public function setPurchaseState($purchaseState)
100  {
101    $this->purchaseState = $purchaseState;
102  }
103  public function getPurchaseState()
104  {
105    return $this->purchaseState;
106  }
107  public function setPurchaseTimeMillis($purchaseTimeMillis)
108  {
109    $this->purchaseTimeMillis = $purchaseTimeMillis;
110  }
111  public function getPurchaseTimeMillis()
112  {
113    return $this->purchaseTimeMillis;
114  }
115  public function setPurchaseToken($purchaseToken)
116  {
117    $this->purchaseToken = $purchaseToken;
118  }
119  public function getPurchaseToken()
120  {
121    return $this->purchaseToken;
122  }
123  public function setPurchaseType($purchaseType)
124  {
125    $this->purchaseType = $purchaseType;
126  }
127  public function getPurchaseType()
128  {
129    return $this->purchaseType;
130  }
131  public function setQuantity($quantity)
132  {
133    $this->quantity = $quantity;
134  }
135  public function getQuantity()
136  {
137    return $this->quantity;
138  }
139  public function setRegionCode($regionCode)
140  {
141    $this->regionCode = $regionCode;
142  }
143  public function getRegionCode()
144  {
145    return $this->regionCode;
146  }
147}
148