source: vendor/google/apiclient-services/src/CloudRetail/GoogleCloudRetailV2LocalInventory.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 2 weeks ago

Upload project files

  • Property mode set to 100644
File size: 2.6 KB
Line 
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\CloudRetail;
19
20class GoogleCloudRetailV2LocalInventory extends \Google\Collection
21{
22 protected $collection_key = 'fulfillmentTypes';
23 protected $attributesType = GoogleCloudRetailV2CustomAttribute::class;
24 protected $attributesDataType = 'map';
25 /**
26 * @var string
27 */
28 public $availability;
29 /**
30 * @var string[]
31 */
32 public $fulfillmentTypes;
33 /**
34 * @var string
35 */
36 public $placeId;
37 protected $priceInfoType = GoogleCloudRetailV2PriceInfo::class;
38 protected $priceInfoDataType = '';
39
40 /**
41 * @param GoogleCloudRetailV2CustomAttribute[]
42 */
43 public function setAttributes($attributes)
44 {
45 $this->attributes = $attributes;
46 }
47 /**
48 * @return GoogleCloudRetailV2CustomAttribute[]
49 */
50 public function getAttributes()
51 {
52 return $this->attributes;
53 }
54 /**
55 * @param string
56 */
57 public function setAvailability($availability)
58 {
59 $this->availability = $availability;
60 }
61 /**
62 * @return string
63 */
64 public function getAvailability()
65 {
66 return $this->availability;
67 }
68 /**
69 * @param string[]
70 */
71 public function setFulfillmentTypes($fulfillmentTypes)
72 {
73 $this->fulfillmentTypes = $fulfillmentTypes;
74 }
75 /**
76 * @return string[]
77 */
78 public function getFulfillmentTypes()
79 {
80 return $this->fulfillmentTypes;
81 }
82 /**
83 * @param string
84 */
85 public function setPlaceId($placeId)
86 {
87 $this->placeId = $placeId;
88 }
89 /**
90 * @return string
91 */
92 public function getPlaceId()
93 {
94 return $this->placeId;
95 }
96 /**
97 * @param GoogleCloudRetailV2PriceInfo
98 */
99 public function setPriceInfo(GoogleCloudRetailV2PriceInfo $priceInfo)
100 {
101 $this->priceInfo = $priceInfo;
102 }
103 /**
104 * @return GoogleCloudRetailV2PriceInfo
105 */
106 public function getPriceInfo()
107 {
108 return $this->priceInfo;
109 }
110}
111
112// Adding a class alias for backwards compatibility with the previous class name.
113class_alias(GoogleCloudRetailV2LocalInventory::class, 'Google_Service_CloudRetail_GoogleCloudRetailV2LocalInventory');
Note: See TracBrowser for help on using the repository browser.