1 | <?php |
||
12 | class Comments |
||
13 | { |
||
14 | /** |
||
15 | * @var Client |
||
16 | */ |
||
17 | private $client; |
||
18 | |||
19 | 1 | public function __construct(Client $client) |
|
23 | |||
24 | /** |
||
25 | * Get record comments |
||
26 | * https://cybozudev.zendesk.com/hc/ja/articles/208242326 |
||
27 | * |
||
28 | * @param int $appId |
||
29 | * @param int $recordId |
||
30 | * @param string $order "asc" or "desc" |
||
31 | * @param int $offset |
||
32 | * @param int $limit Max = 10 |
||
33 | * @param int $guestSpaceId |
||
34 | * @return array |
||
35 | */ |
||
36 | public function get($appId, $recordId, $order = 'desc', $offset = 0, $limit = 10, $guestSpaceId = null) |
||
53 | } |