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_VoidedPurchase extends Google_Model
19{
20  public $kind;
21  public $orderId;
22  public $purchaseTimeMillis;
23  public $purchaseToken;
24  public $voidedReason;
25  public $voidedSource;
26  public $voidedTimeMillis;
27
28  public function setKind($kind)
29  {
30    $this->kind = $kind;
31  }
32  public function getKind()
33  {
34    return $this->kind;
35  }
36  public function setOrderId($orderId)
37  {
38    $this->orderId = $orderId;
39  }
40  public function getOrderId()
41  {
42    return $this->orderId;
43  }
44  public function setPurchaseTimeMillis($purchaseTimeMillis)
45  {
46    $this->purchaseTimeMillis = $purchaseTimeMillis;
47  }
48  public function getPurchaseTimeMillis()
49  {
50    return $this->purchaseTimeMillis;
51  }
52  public function setPurchaseToken($purchaseToken)
53  {
54    $this->purchaseToken = $purchaseToken;
55  }
56  public function getPurchaseToken()
57  {
58    return $this->purchaseToken;
59  }
60  public function setVoidedReason($voidedReason)
61  {
62    $this->voidedReason = $voidedReason;
63  }
64  public function getVoidedReason()
65  {
66    return $this->voidedReason;
67  }
68  public function setVoidedSource($voidedSource)
69  {
70    $this->voidedSource = $voidedSource;
71  }
72  public function getVoidedSource()
73  {
74    return $this->voidedSource;
75  }
76  public function setVoidedTimeMillis($voidedTimeMillis)
77  {
78    $this->voidedTimeMillis = $voidedTimeMillis;
79  }
80  public function getVoidedTimeMillis()
81  {
82    return $this->voidedTimeMillis;
83  }
84}
85