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_Licensing_LicenseAssignment extends Google_Model
19{
20  public $etags;
21  public $kind;
22  public $productId;
23  public $productName;
24  public $selfLink;
25  public $skuId;
26  public $skuName;
27  public $userId;
28
29  public function setEtags($etags)
30  {
31    $this->etags = $etags;
32  }
33  public function getEtags()
34  {
35    return $this->etags;
36  }
37  public function setKind($kind)
38  {
39    $this->kind = $kind;
40  }
41  public function getKind()
42  {
43    return $this->kind;
44  }
45  public function setProductId($productId)
46  {
47    $this->productId = $productId;
48  }
49  public function getProductId()
50  {
51    return $this->productId;
52  }
53  public function setProductName($productName)
54  {
55    $this->productName = $productName;
56  }
57  public function getProductName()
58  {
59    return $this->productName;
60  }
61  public function setSelfLink($selfLink)
62  {
63    $this->selfLink = $selfLink;
64  }
65  public function getSelfLink()
66  {
67    return $this->selfLink;
68  }
69  public function setSkuId($skuId)
70  {
71    $this->skuId = $skuId;
72  }
73  public function getSkuId()
74  {
75    return $this->skuId;
76  }
77  public function setSkuName($skuName)
78  {
79    $this->skuName = $skuName;
80  }
81  public function getSkuName()
82  {
83    return $this->skuName;
84  }
85  public function setUserId($userId)
86  {
87    $this->userId = $userId;
88  }
89  public function getUserId()
90  {
91    return $this->userId;
92  }
93}
94