source: vendor/google/apiclient-services/src/AnalyticsReporting/GoalData.php

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

Upload project files

  • Property mode set to 100644
File size: 3.1 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\AnalyticsReporting;
19
20class GoalData extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $goalCompletionLocation;
26 /**
27 * @var string
28 */
29 public $goalCompletions;
30 /**
31 * @var int
32 */
33 public $goalIndex;
34 /**
35 * @var string
36 */
37 public $goalName;
38 /**
39 * @var string
40 */
41 public $goalPreviousStep1;
42 /**
43 * @var string
44 */
45 public $goalPreviousStep2;
46 /**
47 * @var string
48 */
49 public $goalPreviousStep3;
50 public $goalValue;
51
52 /**
53 * @param string
54 */
55 public function setGoalCompletionLocation($goalCompletionLocation)
56 {
57 $this->goalCompletionLocation = $goalCompletionLocation;
58 }
59 /**
60 * @return string
61 */
62 public function getGoalCompletionLocation()
63 {
64 return $this->goalCompletionLocation;
65 }
66 /**
67 * @param string
68 */
69 public function setGoalCompletions($goalCompletions)
70 {
71 $this->goalCompletions = $goalCompletions;
72 }
73 /**
74 * @return string
75 */
76 public function getGoalCompletions()
77 {
78 return $this->goalCompletions;
79 }
80 /**
81 * @param int
82 */
83 public function setGoalIndex($goalIndex)
84 {
85 $this->goalIndex = $goalIndex;
86 }
87 /**
88 * @return int
89 */
90 public function getGoalIndex()
91 {
92 return $this->goalIndex;
93 }
94 /**
95 * @param string
96 */
97 public function setGoalName($goalName)
98 {
99 $this->goalName = $goalName;
100 }
101 /**
102 * @return string
103 */
104 public function getGoalName()
105 {
106 return $this->goalName;
107 }
108 /**
109 * @param string
110 */
111 public function setGoalPreviousStep1($goalPreviousStep1)
112 {
113 $this->goalPreviousStep1 = $goalPreviousStep1;
114 }
115 /**
116 * @return string
117 */
118 public function getGoalPreviousStep1()
119 {
120 return $this->goalPreviousStep1;
121 }
122 /**
123 * @param string
124 */
125 public function setGoalPreviousStep2($goalPreviousStep2)
126 {
127 $this->goalPreviousStep2 = $goalPreviousStep2;
128 }
129 /**
130 * @return string
131 */
132 public function getGoalPreviousStep2()
133 {
134 return $this->goalPreviousStep2;
135 }
136 /**
137 * @param string
138 */
139 public function setGoalPreviousStep3($goalPreviousStep3)
140 {
141 $this->goalPreviousStep3 = $goalPreviousStep3;
142 }
143 /**
144 * @return string
145 */
146 public function getGoalPreviousStep3()
147 {
148 return $this->goalPreviousStep3;
149 }
150 public function setGoalValue($goalValue)
151 {
152 $this->goalValue = $goalValue;
153 }
154 public function getGoalValue()
155 {
156 return $this->goalValue;
157 }
158}
159
160// Adding a class alias for backwards compatibility with the previous class name.
161class_alias(GoalData::class, 'Google_Service_AnalyticsReporting_GoalData');
Note: See TracBrowser for help on using the repository browser.