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_GamesConfiguration_GamesNumberAffixConfiguration extends Google_Model
19{
20  protected $fewType = 'Google_Service_GamesConfiguration_LocalizedStringBundle';
21  protected $fewDataType = '';
22  protected $manyType = 'Google_Service_GamesConfiguration_LocalizedStringBundle';
23  protected $manyDataType = '';
24  protected $oneType = 'Google_Service_GamesConfiguration_LocalizedStringBundle';
25  protected $oneDataType = '';
26  protected $otherType = 'Google_Service_GamesConfiguration_LocalizedStringBundle';
27  protected $otherDataType = '';
28  protected $twoType = 'Google_Service_GamesConfiguration_LocalizedStringBundle';
29  protected $twoDataType = '';
30  protected $zeroType = 'Google_Service_GamesConfiguration_LocalizedStringBundle';
31  protected $zeroDataType = '';
32
33  /**
34   * @param Google_Service_GamesConfiguration_LocalizedStringBundle
35   */
36  public function setFew(Google_Service_GamesConfiguration_LocalizedStringBundle $few)
37  {
38    $this->few = $few;
39  }
40  /**
41   * @return Google_Service_GamesConfiguration_LocalizedStringBundle
42   */
43  public function getFew()
44  {
45    return $this->few;
46  }
47  /**
48   * @param Google_Service_GamesConfiguration_LocalizedStringBundle
49   */
50  public function setMany(Google_Service_GamesConfiguration_LocalizedStringBundle $many)
51  {
52    $this->many = $many;
53  }
54  /**
55   * @return Google_Service_GamesConfiguration_LocalizedStringBundle
56   */
57  public function getMany()
58  {
59    return $this->many;
60  }
61  /**
62   * @param Google_Service_GamesConfiguration_LocalizedStringBundle
63   */
64  public function setOne(Google_Service_GamesConfiguration_LocalizedStringBundle $one)
65  {
66    $this->one = $one;
67  }
68  /**
69   * @return Google_Service_GamesConfiguration_LocalizedStringBundle
70   */
71  public function getOne()
72  {
73    return $this->one;
74  }
75  /**
76   * @param Google_Service_GamesConfiguration_LocalizedStringBundle
77   */
78  public function setOther(Google_Service_GamesConfiguration_LocalizedStringBundle $other)
79  {
80    $this->other = $other;
81  }
82  /**
83   * @return Google_Service_GamesConfiguration_LocalizedStringBundle
84   */
85  public function getOther()
86  {
87    return $this->other;
88  }
89  /**
90   * @param Google_Service_GamesConfiguration_LocalizedStringBundle
91   */
92  public function setTwo(Google_Service_GamesConfiguration_LocalizedStringBundle $two)
93  {
94    $this->two = $two;
95  }
96  /**
97   * @return Google_Service_GamesConfiguration_LocalizedStringBundle
98   */
99  public function getTwo()
100  {
101    return $this->two;
102  }
103  /**
104   * @param Google_Service_GamesConfiguration_LocalizedStringBundle
105   */
106  public function setZero(Google_Service_GamesConfiguration_LocalizedStringBundle $zero)
107  {
108    $this->zero = $zero;
109  }
110  /**
111   * @return Google_Service_GamesConfiguration_LocalizedStringBundle
112   */
113  public function getZero()
114  {
115    return $this->zero;
116  }
117}
118