1 | <?php |
||
21 | class Client extends BaseClient |
||
22 | { |
||
23 | /** |
||
24 | * @param int $templateId |
||
25 | * @param string $extJson |
||
26 | * @param string $version |
||
27 | * @param string $description |
||
28 | * |
||
29 | * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string |
||
30 | */ |
||
31 | public function commit(int $templateId, string $extJson, string $version, string $description) |
||
40 | |||
41 | /** |
||
42 | * @return \EasyWeChat\Kernel\Http\Response |
||
43 | */ |
||
44 | public function getQrCode() |
||
48 | |||
49 | /** |
||
50 | * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string |
||
51 | */ |
||
52 | public function getCategory() |
||
56 | |||
57 | /** |
||
58 | * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string |
||
59 | */ |
||
60 | public function getPage() |
||
64 | |||
65 | /** |
||
66 | * @param array $itemList |
||
67 | * |
||
68 | * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string |
||
69 | */ |
||
70 | public function submitAudit(array $itemList) |
||
76 | |||
77 | /** |
||
78 | * @param int $auditId |
||
79 | * |
||
80 | * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string |
||
81 | */ |
||
82 | public function getAuditStatus(int $auditId) |
||
88 | |||
89 | /** |
||
90 | * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string |
||
91 | */ |
||
92 | public function getLatestAuditStatus() |
||
96 | |||
97 | /** |
||
98 | * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string |
||
99 | */ |
||
100 | public function release() |
||
104 | |||
105 | /** |
||
106 | * @param string $action |
||
107 | * |
||
108 | * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string |
||
109 | */ |
||
110 | public function changeVisitStatus(string $action) |
||
116 | } |
||
117 |