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 ( d43c89...51b252 )
by
unknown
06:14
created

MassPush::withPushTask()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 45
Code Lines 41

Duplication

Lines 0
Ratio 0 %

Importance

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