GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Test Failed
Push — master ( 8435cc...055e1e )
by
unknown
07:15
created

Push::withIOSNotificationCollapseId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace AlibabaCloud\Push\V20160801;
4
5
use AlibabaCloud\Client\Resolver\ApiResolver;
6
7
/**
8
 * @method BindAlias bindAlias(array $options = [])
9
 * @method BindPhone bindPhone(array $options = [])
10
 * @method BindTag bindTag(array $options = [])
11
 * @method CancelPush cancelPush(array $options = [])
12
 * @method CheckDevice checkDevice(array $options = [])
13
 * @method CheckDevices checkDevices(array $options = [])
14
 * @method CompleteContinuouslyPush completeContinuouslyPush(array $options = [])
15
 * @method ContinuouslyPush continuouslyPush(array $options = [])
16
 * @method ListSummaryApps listSummaryApps(array $options = [])
17
 * @method ListTags listTags(array $options = [])
18
 * @method MassPush massPush(array $options = [])
19
 * @method Push push(array $options = [])
20
 * @method PushMessageToAndroid pushMessageToAndroid(array $options = [])
21
 * @method PushMessageToiOS pushMessageToiOS(array $options = [])
22
 * @method PushNoticeToAndroid pushNoticeToAndroid(array $options = [])
23
 * @method PushNoticeToiOS pushNoticeToiOS(array $options = [])
24
 * @method QueryAliases queryAliases(array $options = [])
25
 * @method QueryDeviceCount queryDeviceCount(array $options = [])
26
 * @method QueryDeviceInfo queryDeviceInfo(array $options = [])
27
 * @method QueryDevicesByAccount queryDevicesByAccount(array $options = [])
28
 * @method QueryDevicesByAlias queryDevicesByAlias(array $options = [])
29
 * @method QueryDeviceStat queryDeviceStat(array $options = [])
30
 * @method QueryPushRecords queryPushRecords(array $options = [])
31
 * @method QueryPushStatByApp queryPushStatByApp(array $options = [])
32
 * @method QueryPushStatByMsg queryPushStatByMsg(array $options = [])
33
 * @method QueryTags queryTags(array $options = [])
34
 * @method QueryUniqueDeviceStat queryUniqueDeviceStat(array $options = [])
35
 * @method RemoveTag removeTag(array $options = [])
36
 * @method UnbindAlias unbindAlias(array $options = [])
37
 * @method UnbindPhone unbindPhone(array $options = [])
38
 * @method UnbindTag unbindTag(array $options = [])
39
 */
40
class PushApiResolver extends ApiResolver
41
{
42
}
43
44
class Rpc extends \AlibabaCloud\Client\Resolver\Rpc
45
{
46
    /** @var string */
47
    public $product = 'Push';
48
49
    /** @var string */
50
    public $version = '2016-08-01';
51
52
    /** @var string */
53
    public $method = 'POST';
54
}
55
56
/**
57
 * @method string getDeviceId()
58
 * @method $this withDeviceId($value)
59
 * @method string getAliasName()
60
 * @method $this withAliasName($value)
61
 * @method string getAppKey()
62
 * @method $this withAppKey($value)
63
 */
64
class BindAlias extends Rpc
65
{
66
}
67
68
/**
69
 * @method string getPhoneNumber()
70
 * @method $this withPhoneNumber($value)
71
 * @method string getDeviceId()
72
 * @method $this withDeviceId($value)
73
 * @method string getAppKey()
74
 * @method $this withAppKey($value)
75
 */
76
class BindPhone extends Rpc
77
{
78
}
79
80
/**
81
 * @method string getKeyType()
82
 * @method $this withKeyType($value)
83
 * @method string getTagName()
84
 * @method $this withTagName($value)
85
 * @method string getClientKey()
86
 * @method $this withClientKey($value)
87
 * @method string getAppKey()
88
 * @method $this withAppKey($value)
89
 */
90
class BindTag extends Rpc
91
{
92
}
93
94
/**
95
 * @method string getMessageId()
96
 * @method $this withMessageId($value)
97
 * @method string getAppKey()
98
 * @method $this withAppKey($value)
99
 */
100
class CancelPush extends Rpc
101
{
102
}
103
104
/**
105
 * @method string getDeviceId()
106
 * @method $this withDeviceId($value)
107
 * @method string getAppKey()
108
 * @method $this withAppKey($value)
109
 */
110
class CheckDevice extends Rpc
111
{
112
}
113
114
/**
115
 * @method string getDeviceIds()
116
 * @method $this withDeviceIds($value)
117
 * @method string getAppKey()
118
 * @method $this withAppKey($value)
119
 */
120
class CheckDevices extends Rpc
121
{
122
}
123
124
/**
125
 * @method string getMessageId()
126
 * @method $this withMessageId($value)
127
 * @method string getAppKey()
128
 * @method $this withAppKey($value)
129
 */
130
class CompleteContinuouslyPush extends Rpc
131
{
132
}
133
134
/**
135
 * @method string getMessageId()
136
 * @method $this withMessageId($value)
137
 * @method string getTarget()
138
 * @method $this withTarget($value)
139
 * @method string getAppKey()
140
 * @method $this withAppKey($value)
141
 * @method string getTargetValue()
142
 * @method $this withTargetValue($value)
143
 */
144
class ContinuouslyPush extends Rpc
145
{
146
}
147
148
class ListSummaryApps extends Rpc
149
{
150
}
151
152
/**
153
 * @method string getAppKey()
154
 * @method $this withAppKey($value)
155
 */
156
class ListTags extends Rpc
157
{
158
}
159
160
/**
161
 * @method array getPushTask()
162
 * @method string getAppKey()
163
 * @method $this withAppKey($value)
164
 */
165
class MassPush extends Rpc
166
{
167
168
    /**
169
     * @param array $pushTask
170
     *
171
     * @return $this
172
     */
173
	public function withPushTask(array $pushTask)
174
	{
175
	    $this->data['PushTask'] = $pushTask;
176
		foreach ($pushTask as $depth1 => $depth1Value) {
177
			if(isset($depth1Value['AndroidNotificationBarType'])){
178
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.AndroidNotificationBarType'] = $depth1Value['AndroidNotificationBarType'];
179
			}
180
			if(isset($depth1Value['AndroidExtParameters'])){
181
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.AndroidExtParameters'] = $depth1Value['AndroidExtParameters'];
182
			}
183
			if(isset($depth1Value['IOSBadge'])){
184
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.iOSBadge'] = $depth1Value['IOSBadge'];
185
			}
186
			if(isset($depth1Value['IOSBadgeAutoIncrement'])){
187
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.iOSBadgeAutoIncrement'] = $depth1Value['IOSBadgeAutoIncrement'];
188
			}
189
			if(isset($depth1Value['AndroidOpenType'])){
190
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.AndroidOpenType'] = $depth1Value['AndroidOpenType'];
191
			}
192
			if(isset($depth1Value['Title'])){
193
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.Title'] = $depth1Value['Title'];
194
			}
195
			if(isset($depth1Value['Body'])){
196
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.Body'] = $depth1Value['Body'];
197
			}
198
			if(isset($depth1Value['DeviceType'])){
199
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.DeviceType'] = $depth1Value['DeviceType'];
200
			}
201
			if(isset($depth1Value['PushTime'])){
202
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.PushTime'] = $depth1Value['PushTime'];
203
			}
204
			if(isset($depth1Value['SendSpeed'])){
205
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.SendSpeed'] = $depth1Value['SendSpeed'];
206
			}
207
			if(isset($depth1Value['AndroidNotificationHuaweiChannel'])){
208
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.AndroidNotificationHuaweiChannel'] = $depth1Value['AndroidNotificationHuaweiChannel'];
209
			}
210
			if(isset($depth1Value['AndroidPopupActivity'])){
211
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.AndroidPopupActivity'] = $depth1Value['AndroidPopupActivity'];
212
			}
213
			if(isset($depth1Value['IOSRemindBody'])){
214
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.iOSRemindBody'] = $depth1Value['IOSRemindBody'];
215
			}
216
			if(isset($depth1Value['IOSExtParameters'])){
217
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.iOSExtParameters'] = $depth1Value['IOSExtParameters'];
218
			}
219
			if(isset($depth1Value['AndroidNotifyType'])){
220
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.AndroidNotifyType'] = $depth1Value['AndroidNotifyType'];
221
			}
222
			if(isset($depth1Value['AndroidPopupTitle'])){
223
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.AndroidPopupTitle'] = $depth1Value['AndroidPopupTitle'];
224
			}
225
			if(isset($depth1Value['IOSMusic'])){
226
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.iOSMusic'] = $depth1Value['IOSMusic'];
227
			}
228
			if(isset($depth1Value['IOSApnsEnv'])){
229
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.iOSApnsEnv'] = $depth1Value['IOSApnsEnv'];
230
			}
231
			if(isset($depth1Value['IOSMutableContent'])){
232
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.iOSMutableContent'] = $depth1Value['IOSMutableContent'];
233
			}
234
			if(isset($depth1Value['AndroidNotificationBarPriority'])){
235
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.AndroidNotificationBarPriority'] = $depth1Value['AndroidNotificationBarPriority'];
236
			}
237
			if(isset($depth1Value['ExpireTime'])){
238
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.ExpireTime'] = $depth1Value['ExpireTime'];
239
			}
240
			if(isset($depth1Value['AndroidNotificationVivoChannel'])){
241
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.AndroidNotificationVivoChannel'] = $depth1Value['AndroidNotificationVivoChannel'];
242
			}
243
			if(isset($depth1Value['AndroidPopupBody'])){
244
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.AndroidPopupBody'] = $depth1Value['AndroidPopupBody'];
245
			}
246
			if(isset($depth1Value['IOSNotificationCategory'])){
247
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.iOSNotificationCategory'] = $depth1Value['IOSNotificationCategory'];
248
			}
249
			if(isset($depth1Value['AndroidNotificationXiaomiChannel'])){
250
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.AndroidNotificationXiaomiChannel'] = $depth1Value['AndroidNotificationXiaomiChannel'];
251
			}
252
			if(isset($depth1Value['StoreOffline'])){
253
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.StoreOffline'] = $depth1Value['StoreOffline'];
254
			}
255
			if(isset($depth1Value['IOSSilentNotification'])){
256
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.iOSSilentNotification'] = $depth1Value['IOSSilentNotification'];
257
			}
258
			if(isset($depth1Value['JobKey'])){
259
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.JobKey'] = $depth1Value['JobKey'];
260
			}
261
			if(isset($depth1Value['Target'])){
262
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.Target'] = $depth1Value['Target'];
263
			}
264
			if(isset($depth1Value['AndroidOpenUrl'])){
265
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.AndroidOpenUrl'] = $depth1Value['AndroidOpenUrl'];
266
			}
267
			if(isset($depth1Value['AndroidNotificationChannel'])){
268
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.AndroidNotificationChannel'] = $depth1Value['AndroidNotificationChannel'];
269
			}
270
			if(isset($depth1Value['AndroidRemind'])){
271
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.AndroidRemind'] = $depth1Value['AndroidRemind'];
272
			}
273
			if(isset($depth1Value['AndroidActivity'])){
274
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.AndroidActivity'] = $depth1Value['AndroidActivity'];
275
			}
276
			if(isset($depth1Value['AndroidXiaoMiNotifyBody'])){
277
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.AndroidXiaoMiNotifyBody'] = $depth1Value['AndroidXiaoMiNotifyBody'];
278
			}
279
			if(isset($depth1Value['IOSSubtitle'])){
280
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.iOSSubtitle'] = $depth1Value['IOSSubtitle'];
281
			}
282
			if(isset($depth1Value['IOSRemind'])){
283
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.iOSRemind'] = $depth1Value['IOSRemind'];
284
			}
285
			if(isset($depth1Value['AndroidNotificationNotifyId'])){
286
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.AndroidNotificationNotifyId'] = $depth1Value['AndroidNotificationNotifyId'];
287
			}
288
			if(isset($depth1Value['TargetValue'])){
289
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.TargetValue'] = $depth1Value['TargetValue'];
290
			}
291
			if(isset($depth1Value['AndroidMusic'])){
292
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.AndroidMusic'] = $depth1Value['AndroidMusic'];
293
			}
294
			if(isset($depth1Value['AndroidXiaoMiActivity'])){
295
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.AndroidXiaoMiActivity'] = $depth1Value['AndroidXiaoMiActivity'];
296
			}
297
			if(isset($depth1Value['AndroidXiaoMiNotifyTitle'])){
298
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.AndroidXiaoMiNotifyTitle'] = $depth1Value['AndroidXiaoMiNotifyTitle'];
299
			}
300
			if(isset($depth1Value['IOSNotificationCollapseId'])){
301
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.iOSNotificationCollapseId'] = $depth1Value['IOSNotificationCollapseId'];
302
			}
303
			if(isset($depth1Value['PushType'])){
304
				$this->options['form_params']['PushTask.' . ($depth1 + 1) . '.PushType'] = $depth1Value['PushType'];
305
			}
306
		}
307
308
		return $this;
309
    }
310
}
311
312
/**
313
 * @method string getAndroidNotificationBarType()
314
 * @method $this withAndroidNotificationBarType($value)
315
 * @method string getSmsSendPolicy()
316
 * @method $this withSmsSendPolicy($value)
317
 * @method string getBody()
318
 * @method $this withBody($value)
319
 * @method string getDeviceType()
320
 * @method $this withDeviceType($value)
321
 * @method string getPushTime()
322
 * @method $this withPushTime($value)
323
 * @method string getSendSpeed()
324
 * @method $this withSendSpeed($value)
325
 * @method string getAndroidNotificationHuaweiChannel()
326
 * @method $this withAndroidNotificationHuaweiChannel($value)
327
 * @method string getAndroidPopupActivity()
328
 * @method $this withAndroidPopupActivity($value)
329
 * @method string getIOSRemindBody()
330
 * @method string getAndroidNotifyType()
331
 * @method $this withAndroidNotifyType($value)
332
 * @method string getAndroidPopupTitle()
333
 * @method $this withAndroidPopupTitle($value)
334
 * @method string getIOSMusic()
335
 * @method string getIOSApnsEnv()
336
 * @method string getIOSMutableContent()
337
 * @method string getAndroidNotificationBarPriority()
338
 * @method $this withAndroidNotificationBarPriority($value)
339
 * @method string getExpireTime()
340
 * @method $this withExpireTime($value)
341
 * @method string getAndroidNotificationVivoChannel()
342
 * @method $this withAndroidNotificationVivoChannel($value)
343
 * @method string getIOSNotificationCategory()
344
 * @method string getAndroidNotificationXiaomiChannel()
345
 * @method $this withAndroidNotificationXiaomiChannel($value)
346
 * @method string getStoreOffline()
347
 * @method $this withStoreOffline($value)
348
 * @method string getSmsParams()
349
 * @method $this withSmsParams($value)
350
 * @method string getJobKey()
351
 * @method $this withJobKey($value)
352
 * @method string getAndroidOpenUrl()
353
 * @method $this withAndroidOpenUrl($value)
354
 * @method string getAndroidXiaoMiNotifyBody()
355
 * @method $this withAndroidXiaoMiNotifyBody($value)
356
 * @method string getIOSSubtitle()
357
 * @method string getIOSRemind()
358
 * @method string getAndroidMusic()
359
 * @method $this withAndroidMusic($value)
360
 * @method string getIOSNotificationCollapseId()
361
 * @method string getPushType()
362
 * @method $this withPushType($value)
363
 * @method string getAndroidExtParameters()
364
 * @method $this withAndroidExtParameters($value)
365
 * @method string getIOSBadge()
366
 * @method string getIOSBadgeAutoIncrement()
367
 * @method string getAndroidOpenType()
368
 * @method $this withAndroidOpenType($value)
369
 * @method string getTitle()
370
 * @method $this withTitle($value)
371
 * @method string getSmsDelaySecs()
372
 * @method $this withSmsDelaySecs($value)
373
 * @method string getIOSExtParameters()
374
 * @method string getSmsTemplateName()
375
 * @method $this withSmsTemplateName($value)
376
 * @method string getAndroidPopupBody()
377
 * @method $this withAndroidPopupBody($value)
378
 * @method string getIOSSilentNotification()
379
 * @method string getTarget()
380
 * @method $this withTarget($value)
381
 * @method string getAndroidNotificationChannel()
382
 * @method $this withAndroidNotificationChannel($value)
383
 * @method string getAndroidRemind()
384
 * @method $this withAndroidRemind($value)
385
 * @method string getAndroidActivity()
386
 * @method $this withAndroidActivity($value)
387
 * @method string getSmsSignName()
388
 * @method $this withSmsSignName($value)
389
 * @method string getAndroidNotificationNotifyId()
390
 * @method $this withAndroidNotificationNotifyId($value)
391
 * @method string getAppKey()
392
 * @method $this withAppKey($value)
393
 * @method string getTargetValue()
394
 * @method $this withTargetValue($value)
395
 * @method string getAndroidXiaoMiActivity()
396
 * @method $this withAndroidXiaoMiActivity($value)
397
 * @method string getAndroidXiaoMiNotifyTitle()
398
 * @method $this withAndroidXiaoMiNotifyTitle($value)
399
 */
400
class Push extends Rpc
401
{
402
403
    /**
404
     * @param string $value
405
     *
406
     * @return $this
407
     */
408
    public function withIOSRemindBody($value)
409
    {
410
        $this->data['IOSRemindBody'] = $value;
411
        $this->options['query']['iOSRemindBody'] = $value;
412
413
        return $this;
414
    }
415
416
    /**
417
     * @param string $value
418
     *
419
     * @return $this
420
     */
421
    public function withIOSMusic($value)
422
    {
423
        $this->data['IOSMusic'] = $value;
424
        $this->options['query']['iOSMusic'] = $value;
425
426
        return $this;
427
    }
428
429
    /**
430
     * @param string $value
431
     *
432
     * @return $this
433
     */
434
    public function withIOSApnsEnv($value)
435
    {
436
        $this->data['IOSApnsEnv'] = $value;
437
        $this->options['query']['iOSApnsEnv'] = $value;
438
439
        return $this;
440
    }
441
442
    /**
443
     * @param string $value
444
     *
445
     * @return $this
446
     */
447
    public function withIOSMutableContent($value)
448
    {
449
        $this->data['IOSMutableContent'] = $value;
450
        $this->options['query']['iOSMutableContent'] = $value;
451
452
        return $this;
453
    }
454
455
    /**
456
     * @param string $value
457
     *
458
     * @return $this
459
     */
460
    public function withIOSNotificationCategory($value)
461
    {
462
        $this->data['IOSNotificationCategory'] = $value;
463
        $this->options['query']['iOSNotificationCategory'] = $value;
464
465
        return $this;
466
    }
467
468
    /**
469
     * @param string $value
470
     *
471
     * @return $this
472
     */
473
    public function withIOSSubtitle($value)
474
    {
475
        $this->data['IOSSubtitle'] = $value;
476
        $this->options['query']['iOSSubtitle'] = $value;
477
478
        return $this;
479
    }
480
481
    /**
482
     * @param string $value
483
     *
484
     * @return $this
485
     */
486
    public function withIOSRemind($value)
487
    {
488
        $this->data['IOSRemind'] = $value;
489
        $this->options['query']['iOSRemind'] = $value;
490
491
        return $this;
492
    }
493
494
    /**
495
     * @param string $value
496
     *
497
     * @return $this
498
     */
499
    public function withIOSNotificationCollapseId($value)
500
    {
501
        $this->data['IOSNotificationCollapseId'] = $value;
502
        $this->options['query']['iOSNotificationCollapseId'] = $value;
503
504
        return $this;
505
    }
506
507
    /**
508
     * @param string $value
509
     *
510
     * @return $this
511
     */
512
    public function withIOSBadge($value)
513
    {
514
        $this->data['IOSBadge'] = $value;
515
        $this->options['query']['iOSBadge'] = $value;
516
517
        return $this;
518
    }
519
520
    /**
521
     * @param string $value
522
     *
523
     * @return $this
524
     */
525
    public function withIOSBadgeAutoIncrement($value)
526
    {
527
        $this->data['IOSBadgeAutoIncrement'] = $value;
528
        $this->options['query']['iOSBadgeAutoIncrement'] = $value;
529
530
        return $this;
531
    }
532
533
    /**
534
     * @param string $value
535
     *
536
     * @return $this
537
     */
538
    public function withIOSExtParameters($value)
539
    {
540
        $this->data['IOSExtParameters'] = $value;
541
        $this->options['query']['iOSExtParameters'] = $value;
542
543
        return $this;
544
    }
545
546
    /**
547
     * @param string $value
548
     *
549
     * @return $this
550
     */
551
    public function withIOSSilentNotification($value)
552
    {
553
        $this->data['IOSSilentNotification'] = $value;
554
        $this->options['query']['iOSSilentNotification'] = $value;
555
556
        return $this;
557
    }
558
}
559
560
/**
561
 * @method string getTitle()
562
 * @method $this withTitle($value)
563
 * @method string getBody()
564
 * @method $this withBody($value)
565
 * @method string getJobKey()
566
 * @method $this withJobKey($value)
567
 * @method string getTarget()
568
 * @method $this withTarget($value)
569
 * @method string getAppKey()
570
 * @method $this withAppKey($value)
571
 * @method string getTargetValue()
572
 * @method $this withTargetValue($value)
573
 */
574
class PushMessageToAndroid extends Rpc
575
{
576
}
577
578
/**
579
 * @method string getTitle()
580
 * @method $this withTitle($value)
581
 * @method string getBody()
582
 * @method $this withBody($value)
583
 * @method string getJobKey()
584
 * @method $this withJobKey($value)
585
 * @method string getTarget()
586
 * @method $this withTarget($value)
587
 * @method string getAppKey()
588
 * @method $this withAppKey($value)
589
 * @method string getTargetValue()
590
 * @method $this withTargetValue($value)
591
 */
592
class PushMessageToiOS extends Rpc
593
{
594
}
595
596
/**
597
 * @method string getExtParameters()
598
 * @method $this withExtParameters($value)
599
 * @method string getTitle()
600
 * @method $this withTitle($value)
601
 * @method string getBody()
602
 * @method $this withBody($value)
603
 * @method string getJobKey()
604
 * @method $this withJobKey($value)
605
 * @method string getTarget()
606
 * @method $this withTarget($value)
607
 * @method string getAppKey()
608
 * @method $this withAppKey($value)
609
 * @method string getTargetValue()
610
 * @method $this withTargetValue($value)
611
 */
612
class PushNoticeToAndroid extends Rpc
613
{
614
}
615
616
/**
617
 * @method string getExtParameters()
618
 * @method $this withExtParameters($value)
619
 * @method string getApnsEnv()
620
 * @method $this withApnsEnv($value)
621
 * @method string getTitle()
622
 * @method $this withTitle($value)
623
 * @method string getBody()
624
 * @method $this withBody($value)
625
 * @method string getJobKey()
626
 * @method $this withJobKey($value)
627
 * @method string getTarget()
628
 * @method $this withTarget($value)
629
 * @method string getAppKey()
630
 * @method $this withAppKey($value)
631
 * @method string getTargetValue()
632
 * @method $this withTargetValue($value)
633
 */
634
class PushNoticeToiOS extends Rpc
635
{
636
}
637
638
/**
639
 * @method string getDeviceId()
640
 * @method $this withDeviceId($value)
641
 * @method string getAppKey()
642
 * @method $this withAppKey($value)
643
 */
644
class QueryAliases extends Rpc
645
{
646
}
647
648
/**
649
 * @method string getTarget()
650
 * @method $this withTarget($value)
651
 * @method string getAppKey()
652
 * @method $this withAppKey($value)
653
 * @method string getTargetValue()
654
 * @method $this withTargetValue($value)
655
 */
656
class QueryDeviceCount extends Rpc
657
{
658
}
659
660
/**
661
 * @method string getDeviceId()
662
 * @method $this withDeviceId($value)
663
 * @method string getAppKey()
664
 * @method $this withAppKey($value)
665
 */
666
class QueryDeviceInfo extends Rpc
667
{
668
}
669
670
/**
671
 * @method string getAppKey()
672
 * @method $this withAppKey($value)
673
 * @method string getAccount()
674
 * @method $this withAccount($value)
675
 */
676
class QueryDevicesByAccount extends Rpc
677
{
678
}
679
680
/**
681
 * @method string getAlias()
682
 * @method $this withAlias($value)
683
 * @method string getAppKey()
684
 * @method $this withAppKey($value)
685
 */
686
class QueryDevicesByAlias extends Rpc
687
{
688
}
689
690
/**
691
 * @method string getEndTime()
692
 * @method $this withEndTime($value)
693
 * @method string getStartTime()
694
 * @method $this withStartTime($value)
695
 * @method string getDeviceType()
696
 * @method $this withDeviceType($value)
697
 * @method string getAppKey()
698
 * @method $this withAppKey($value)
699
 * @method string getQueryType()
700
 * @method $this withQueryType($value)
701
 */
702
class QueryDeviceStat extends Rpc
703
{
704
}
705
706
/**
707
 * @method string getStartTime()
708
 * @method $this withStartTime($value)
709
 * @method string getSource()
710
 * @method $this withSource($value)
711
 * @method string getNextToken()
712
 * @method $this withNextToken($value)
713
 * @method string getPageSize()
714
 * @method $this withPageSize($value)
715
 * @method string getKeyword()
716
 * @method $this withKeyword($value)
717
 * @method string getEndTime()
718
 * @method $this withEndTime($value)
719
 * @method string getTarget()
720
 * @method $this withTarget($value)
721
 * @method string getAppKey()
722
 * @method $this withAppKey($value)
723
 * @method string getPushType()
724
 * @method $this withPushType($value)
725
 */
726
class QueryPushRecords extends Rpc
727
{
728
}
729
730
/**
731
 * @method string getEndTime()
732
 * @method $this withEndTime($value)
733
 * @method string getStartTime()
734
 * @method $this withStartTime($value)
735
 * @method string getGranularity()
736
 * @method $this withGranularity($value)
737
 * @method string getAppKey()
738
 * @method $this withAppKey($value)
739
 */
740
class QueryPushStatByApp extends Rpc
741
{
742
}
743
744
/**
745
 * @method string getMessageId()
746
 * @method $this withMessageId($value)
747
 * @method string getAppKey()
748
 * @method $this withAppKey($value)
749
 */
750
class QueryPushStatByMsg extends Rpc
751
{
752
}
753
754
/**
755
 * @method string getKeyType()
756
 * @method $this withKeyType($value)
757
 * @method string getClientKey()
758
 * @method $this withClientKey($value)
759
 * @method string getAppKey()
760
 * @method $this withAppKey($value)
761
 */
762
class QueryTags extends Rpc
763
{
764
}
765
766
/**
767
 * @method string getEndTime()
768
 * @method $this withEndTime($value)
769
 * @method string getStartTime()
770
 * @method $this withStartTime($value)
771
 * @method string getGranularity()
772
 * @method $this withGranularity($value)
773
 * @method string getAppKey()
774
 * @method $this withAppKey($value)
775
 */
776
class QueryUniqueDeviceStat extends Rpc
777
{
778
}
779
780
/**
781
 * @method string getTagName()
782
 * @method $this withTagName($value)
783
 * @method string getAppKey()
784
 * @method $this withAppKey($value)
785
 */
786
class RemoveTag extends Rpc
787
{
788
}
789
790
/**
791
 * @method string getDeviceId()
792
 * @method $this withDeviceId($value)
793
 * @method string getAliasName()
794
 * @method $this withAliasName($value)
795
 * @method string getAppKey()
796
 * @method $this withAppKey($value)
797
 * @method string getUnbindAll()
798
 * @method $this withUnbindAll($value)
799
 */
800
class UnbindAlias extends Rpc
801
{
802
}
803
804
/**
805
 * @method string getDeviceId()
806
 * @method $this withDeviceId($value)
807
 * @method string getAppKey()
808
 * @method $this withAppKey($value)
809
 */
810
class UnbindPhone extends Rpc
811
{
812
}
813
814
/**
815
 * @method string getKeyType()
816
 * @method $this withKeyType($value)
817
 * @method string getTagName()
818
 * @method $this withTagName($value)
819
 * @method string getClientKey()
820
 * @method $this withClientKey($value)
821
 * @method string getAppKey()
822
 * @method $this withAppKey($value)
823
 */
824
class UnbindTag extends Rpc
825
{
826
}
827