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\ShoppingContent;
19
20class LiaCountrySettings extends \Google\Model
21{
22  protected $aboutType = LiaAboutPageSettings::class;
23  protected $aboutDataType = '';
24  /**
25   * @var string
26   */
27  public $country;
28  /**
29   * @var bool
30   */
31  public $hostedLocalStorefrontActive;
32  protected $inventoryType = LiaInventorySettings::class;
33  protected $inventoryDataType = '';
34  protected $onDisplayToOrderType = LiaOnDisplayToOrderSettings::class;
35  protected $onDisplayToOrderDataType = '';
36  protected $posDataProviderType = LiaPosDataProvider::class;
37  protected $posDataProviderDataType = '';
38  /**
39   * @var bool
40   */
41  public $storePickupActive;
42
43  /**
44   * @param LiaAboutPageSettings
45   */
46  public function setAbout(LiaAboutPageSettings $about)
47  {
48    $this->about = $about;
49  }
50  /**
51   * @return LiaAboutPageSettings
52   */
53  public function getAbout()
54  {
55    return $this->about;
56  }
57  /**
58   * @param string
59   */
60  public function setCountry($country)
61  {
62    $this->country = $country;
63  }
64  /**
65   * @return string
66   */
67  public function getCountry()
68  {
69    return $this->country;
70  }
71  /**
72   * @param bool
73   */
74  public function setHostedLocalStorefrontActive($hostedLocalStorefrontActive)
75  {
76    $this->hostedLocalStorefrontActive = $hostedLocalStorefrontActive;
77  }
78  /**
79   * @return bool
80   */
81  public function getHostedLocalStorefrontActive()
82  {
83    return $this->hostedLocalStorefrontActive;
84  }
85  /**
86   * @param LiaInventorySettings
87   */
88  public function setInventory(LiaInventorySettings $inventory)
89  {
90    $this->inventory = $inventory;
91  }
92  /**
93   * @return LiaInventorySettings
94   */
95  public function getInventory()
96  {
97    return $this->inventory;
98  }
99  /**
100   * @param LiaOnDisplayToOrderSettings
101   */
102  public function setOnDisplayToOrder(LiaOnDisplayToOrderSettings $onDisplayToOrder)
103  {
104    $this->onDisplayToOrder = $onDisplayToOrder;
105  }
106  /**
107   * @return LiaOnDisplayToOrderSettings
108   */
109  public function getOnDisplayToOrder()
110  {
111    return $this->onDisplayToOrder;
112  }
113  /**
114   * @param LiaPosDataProvider
115   */
116  public function setPosDataProvider(LiaPosDataProvider $posDataProvider)
117  {
118    $this->posDataProvider = $posDataProvider;
119  }
120  /**
121   * @return LiaPosDataProvider
122   */
123  public function getPosDataProvider()
124  {
125    return $this->posDataProvider;
126  }
127  /**
128   * @param bool
129   */
130  public function setStorePickupActive($storePickupActive)
131  {
132    $this->storePickupActive = $storePickupActive;
133  }
134  /**
135   * @return bool
136   */
137  public function getStorePickupActive()
138  {
139    return $this->storePickupActive;
140  }
141}
142
143// Adding a class alias for backwards compatibility with the previous class name.
144class_alias(LiaCountrySettings::class, 'Google_Service_ShoppingContent_LiaCountrySettings');
145