1 | <?php |
||
19 | class ChannelsListPayload extends AbstractPayload |
||
20 | { |
||
21 | /** |
||
22 | * @var bool |
||
23 | */ |
||
24 | private $exclude_archived; |
||
25 | |||
26 | /** |
||
27 | * @var bool |
||
28 | */ |
||
29 | private $exclude_members; |
||
30 | |||
31 | /** |
||
32 | * @var int |
||
33 | */ |
||
34 | private $limit; |
||
35 | |||
36 | /** |
||
37 | * @inheritdoc |
||
38 | */ |
||
39 | 1 | public function getMethod() |
|
43 | |||
44 | /** |
||
45 | * @param bool $exclude_archived |
||
46 | */ |
||
47 | 1 | public function setExcludeArchived($exclude_archived) |
|
51 | |||
52 | /** |
||
53 | * @return bool |
||
54 | */ |
||
55 | 1 | public function isExcludeArchived() |
|
59 | |||
60 | /** |
||
61 | * @return bool |
||
62 | */ |
||
63 | public function isExcludeMembers() |
||
67 | |||
68 | /** |
||
69 | * @param bool $exclude_members |
||
70 | */ |
||
71 | public function setExcludeMembers( bool $exclude_members ) |
||
75 | |||
76 | /** |
||
77 | * @return int |
||
78 | */ |
||
79 | public function getLimit() |
||
83 | |||
84 | /** |
||
85 | * @param int $limit |
||
86 | */ |
||
87 | public function setLimit( $limit ) |
||
91 | |||
92 | } |
||
93 |