Total Complexity | 3 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class CancelOrder extends PrivateEndpoint implements IPostEndpointInterface |
||
13 | { |
||
14 | protected function getEndpointUrl(): string |
||
15 | { |
||
16 | return "/spot/v3/private/cancel-order"; |
||
17 | } |
||
18 | |||
19 | protected function getResponseClassname(): string |
||
20 | { |
||
21 | return CancelOrderResponse::class; |
||
22 | } |
||
23 | |||
24 | protected function getOptionsClassname(): string |
||
27 | } |
||
28 | } |