source: vendor/google/apiclient-services/src/RecommendationsAI/GoogleCloudRecommendationengineV1beta1UserEvent.php@ e3d4e0a

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

Upload project files

  • Property mode set to 100644
File size: 3.2 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\RecommendationsAI;
19
20class GoogleCloudRecommendationengineV1beta1UserEvent extends \Google\Model
21{
22 protected $eventDetailType = GoogleCloudRecommendationengineV1beta1EventDetail::class;
23 protected $eventDetailDataType = '';
24 /**
25 * @var string
26 */
27 public $eventSource;
28 /**
29 * @var string
30 */
31 public $eventTime;
32 /**
33 * @var string
34 */
35 public $eventType;
36 protected $productEventDetailType = GoogleCloudRecommendationengineV1beta1ProductEventDetail::class;
37 protected $productEventDetailDataType = '';
38 protected $userInfoType = GoogleCloudRecommendationengineV1beta1UserInfo::class;
39 protected $userInfoDataType = '';
40
41 /**
42 * @param GoogleCloudRecommendationengineV1beta1EventDetail
43 */
44 public function setEventDetail(GoogleCloudRecommendationengineV1beta1EventDetail $eventDetail)
45 {
46 $this->eventDetail = $eventDetail;
47 }
48 /**
49 * @return GoogleCloudRecommendationengineV1beta1EventDetail
50 */
51 public function getEventDetail()
52 {
53 return $this->eventDetail;
54 }
55 /**
56 * @param string
57 */
58 public function setEventSource($eventSource)
59 {
60 $this->eventSource = $eventSource;
61 }
62 /**
63 * @return string
64 */
65 public function getEventSource()
66 {
67 return $this->eventSource;
68 }
69 /**
70 * @param string
71 */
72 public function setEventTime($eventTime)
73 {
74 $this->eventTime = $eventTime;
75 }
76 /**
77 * @return string
78 */
79 public function getEventTime()
80 {
81 return $this->eventTime;
82 }
83 /**
84 * @param string
85 */
86 public function setEventType($eventType)
87 {
88 $this->eventType = $eventType;
89 }
90 /**
91 * @return string
92 */
93 public function getEventType()
94 {
95 return $this->eventType;
96 }
97 /**
98 * @param GoogleCloudRecommendationengineV1beta1ProductEventDetail
99 */
100 public function setProductEventDetail(GoogleCloudRecommendationengineV1beta1ProductEventDetail $productEventDetail)
101 {
102 $this->productEventDetail = $productEventDetail;
103 }
104 /**
105 * @return GoogleCloudRecommendationengineV1beta1ProductEventDetail
106 */
107 public function getProductEventDetail()
108 {
109 return $this->productEventDetail;
110 }
111 /**
112 * @param GoogleCloudRecommendationengineV1beta1UserInfo
113 */
114 public function setUserInfo(GoogleCloudRecommendationengineV1beta1UserInfo $userInfo)
115 {
116 $this->userInfo = $userInfo;
117 }
118 /**
119 * @return GoogleCloudRecommendationengineV1beta1UserInfo
120 */
121 public function getUserInfo()
122 {
123 return $this->userInfo;
124 }
125}
126
127// Adding a class alias for backwards compatibility with the previous class name.
128class_alias(GoogleCloudRecommendationengineV1beta1UserEvent::class, 'Google_Service_RecommendationsAI_GoogleCloudRecommendationengineV1beta1UserEvent');
Note: See TracBrowser for help on using the repository browser.