-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathCustomEmoji.php
More file actions
257 lines (234 loc) · 9.23 KB
/
CustomEmoji.php
File metadata and controls
257 lines (234 loc) · 9.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/chat/v1/reaction.proto
namespace Google\Apps\Chat\V1;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBUtil;
use Google\Protobuf\RepeatedField;
/**
* Represents a [custom emoji](https://support.google.com/chat/answer/12800149).
*
* Generated from protobuf message <code>google.chat.v1.CustomEmoji</code>
*/
class CustomEmoji extends \Google\Protobuf\Internal\Message
{
/**
* Identifier. The resource name of the custom emoji, assigned by the server.
* Format: `customEmojis/{customEmoji}`
*
* Generated from protobuf field <code>string name = 2 [(.google.api.field_behavior) = IDENTIFIER];</code>
*/
protected $name = '';
/**
* Output only. Unique key for the custom emoji resource.
*
* Generated from protobuf field <code>string uid = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.field_info) = {</code>
*/
protected $uid = '';
/**
* Optional. Immutable. User-provided name for the custom emoji, which is
* unique within the organization.
* Required when the custom emoji is created, output only otherwise.
* Emoji names must start and end with colons, must be lowercase and can only
* contain alphanumeric characters, hyphens, and underscores.
* Hyphens and underscores should be used to separate words and cannot be used
* consecutively.
* Example: `:valid-emoji-name:`
*
* Generated from protobuf field <code>string emoji_name = 3 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = IMMUTABLE];</code>
*/
protected $emoji_name = '';
/**
* Output only. A temporary image URL for the custom emoji, valid for at least
* 10 minutes. Note that this is not populated in the response when the custom
* emoji is created.
*
* Generated from protobuf field <code>string temporary_image_uri = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
protected $temporary_image_uri = '';
/**
* Optional. Input only. Payload data.
* Required when the custom emoji is created.
*
* Generated from protobuf field <code>.google.chat.v1.CustomEmoji.CustomEmojiPayload payload = 5 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = OPTIONAL];</code>
*/
protected $payload = null;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $name
* Identifier. The resource name of the custom emoji, assigned by the server.
* Format: `customEmojis/{customEmoji}`
* @type string $uid
* Output only. Unique key for the custom emoji resource.
* @type string $emoji_name
* Optional. Immutable. User-provided name for the custom emoji, which is
* unique within the organization.
* Required when the custom emoji is created, output only otherwise.
* Emoji names must start and end with colons, must be lowercase and can only
* contain alphanumeric characters, hyphens, and underscores.
* Hyphens and underscores should be used to separate words and cannot be used
* consecutively.
* Example: `:valid-emoji-name:`
* @type string $temporary_image_uri
* Output only. A temporary image URL for the custom emoji, valid for at least
* 10 minutes. Note that this is not populated in the response when the custom
* emoji is created.
* @type \Google\Apps\Chat\V1\CustomEmoji\CustomEmojiPayload $payload
* Optional. Input only. Payload data.
* Required when the custom emoji is created.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Chat\V1\Reaction::initOnce();
parent::__construct($data);
}
/**
* Identifier. The resource name of the custom emoji, assigned by the server.
* Format: `customEmojis/{customEmoji}`
*
* Generated from protobuf field <code>string name = 2 [(.google.api.field_behavior) = IDENTIFIER];</code>
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Identifier. The resource name of the custom emoji, assigned by the server.
* Format: `customEmojis/{customEmoji}`
*
* Generated from protobuf field <code>string name = 2 [(.google.api.field_behavior) = IDENTIFIER];</code>
* @param string $var
* @return $this
*/
public function setName($var)
{
GPBUtil::checkString($var, True);
$this->name = $var;
return $this;
}
/**
* Output only. Unique key for the custom emoji resource.
*
* Generated from protobuf field <code>string uid = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.field_info) = {</code>
* @return string
*/
public function getUid()
{
return $this->uid;
}
/**
* Output only. Unique key for the custom emoji resource.
*
* Generated from protobuf field <code>string uid = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.field_info) = {</code>
* @param string $var
* @return $this
*/
public function setUid($var)
{
GPBUtil::checkString($var, True);
$this->uid = $var;
return $this;
}
/**
* Optional. Immutable. User-provided name for the custom emoji, which is
* unique within the organization.
* Required when the custom emoji is created, output only otherwise.
* Emoji names must start and end with colons, must be lowercase and can only
* contain alphanumeric characters, hyphens, and underscores.
* Hyphens and underscores should be used to separate words and cannot be used
* consecutively.
* Example: `:valid-emoji-name:`
*
* Generated from protobuf field <code>string emoji_name = 3 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = IMMUTABLE];</code>
* @return string
*/
public function getEmojiName()
{
return $this->emoji_name;
}
/**
* Optional. Immutable. User-provided name for the custom emoji, which is
* unique within the organization.
* Required when the custom emoji is created, output only otherwise.
* Emoji names must start and end with colons, must be lowercase and can only
* contain alphanumeric characters, hyphens, and underscores.
* Hyphens and underscores should be used to separate words and cannot be used
* consecutively.
* Example: `:valid-emoji-name:`
*
* Generated from protobuf field <code>string emoji_name = 3 [(.google.api.field_behavior) = OPTIONAL, (.google.api.field_behavior) = IMMUTABLE];</code>
* @param string $var
* @return $this
*/
public function setEmojiName($var)
{
GPBUtil::checkString($var, True);
$this->emoji_name = $var;
return $this;
}
/**
* Output only. A temporary image URL for the custom emoji, valid for at least
* 10 minutes. Note that this is not populated in the response when the custom
* emoji is created.
*
* Generated from protobuf field <code>string temporary_image_uri = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return string
*/
public function getTemporaryImageUri()
{
return $this->temporary_image_uri;
}
/**
* Output only. A temporary image URL for the custom emoji, valid for at least
* 10 minutes. Note that this is not populated in the response when the custom
* emoji is created.
*
* Generated from protobuf field <code>string temporary_image_uri = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param string $var
* @return $this
*/
public function setTemporaryImageUri($var)
{
GPBUtil::checkString($var, True);
$this->temporary_image_uri = $var;
return $this;
}
/**
* Optional. Input only. Payload data.
* Required when the custom emoji is created.
*
* Generated from protobuf field <code>.google.chat.v1.CustomEmoji.CustomEmojiPayload payload = 5 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = OPTIONAL];</code>
* @return \Google\Apps\Chat\V1\CustomEmoji\CustomEmojiPayload|null
*/
public function getPayload()
{
return $this->payload;
}
public function hasPayload()
{
return isset($this->payload);
}
public function clearPayload()
{
unset($this->payload);
}
/**
* Optional. Input only. Payload data.
* Required when the custom emoji is created.
*
* Generated from protobuf field <code>.google.chat.v1.CustomEmoji.CustomEmojiPayload payload = 5 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = OPTIONAL];</code>
* @param \Google\Apps\Chat\V1\CustomEmoji\CustomEmojiPayload $var
* @return $this
*/
public function setPayload($var)
{
GPBUtil::checkMessage($var, \Google\Apps\Chat\V1\CustomEmoji\CustomEmojiPayload::class);
$this->payload = $var;
return $this;
}
}