| 1 | <?php | ||
| 13 | final class PurchaseClient extends AbstractClient | ||
| 14 | { | ||
| 15 | const BASE_URL = 'https://purchase.izettle.com'; | ||
| 16 | |||
| 17 | const GET_PURCHASE = self::BASE_URL . '/purchases/v2/%s'; | ||
| 18 | const GET_PURCHASES = self::BASE_URL . '/purchases/v2'; | ||
| 19 | |||
| 20 | 1 | public function getPurchaseHistory(): PurchaseHistory | |
| 24 | |||
| 25 | 1 | public function getPurchase(UuidInterface $uuid): Purchase | |
| 31 | } | ||
| 32 |