1 | <?php |
||
10 | class PaymentProfile extends Resource |
||
11 | { |
||
12 | /** |
||
13 | * The endpoint that will hit the API. |
||
14 | * |
||
15 | * @return string |
||
16 | */ |
||
17 | 18 | public function endpoint() |
|
21 | |||
22 | /** |
||
23 | * Make a POST request to payment_profiles/{id}/verify |
||
24 | * |
||
25 | * @param int $id The resource's id. |
||
26 | * |
||
27 | * @return mixed |
||
28 | * @throws \GuzzleHttp\Exception\GuzzleException |
||
29 | * @throws \Vindi\Exceptions\RateLimitException |
||
30 | * @throws \Vindi\Exceptions\RequestException |
||
31 | */ |
||
32 | 2 | public function verify($id) |
|
36 | } |
||
37 |