| 1 | <?php |
||
| 22 | class BrandModel extends AbstractModel |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | private static $endpoint = '/brand'; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return ResponseInterface |
||
| 31 | */ |
||
| 32 | public function getBrandImage() |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @param array $requestOptions |
||
| 39 | * @return ResponseInterface |
||
| 40 | */ |
||
| 41 | public function uploadBrandImage(array $requestOptions) |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @return ResponseInterface |
||
| 50 | */ |
||
| 51 | public function deleteCurrentBrandImage() |
||
| 55 | } |
||
| 56 |