1 | <?php namespace Arcanedev\Stripe\Resources; |
||
15 | class ThreeDSecure extends StripeResource implements ThreeDSecureContract |
||
16 | { |
||
17 | /* ------------------------------------------------------------------------------------------------ |
||
18 | | Getter and Setters |
||
19 | | ------------------------------------------------------------------------------------------------ |
||
20 | */ |
||
21 | /** |
||
22 | * Get the endpoint URL for the given class. |
||
23 | * |
||
24 | * @param string $class |
||
25 | * |
||
26 | * @return string |
||
27 | */ |
||
28 | 4 | public static function classUrl($class = '') |
|
32 | |||
33 | /* ------------------------------------------------------------------------------------------------ |
||
34 | | Main Functions |
||
35 | | ------------------------------------------------------------------------------------------------ |
||
36 | */ |
||
37 | /** |
||
38 | * Retrieve the 3D Secure object by id. |
||
39 | * |
||
40 | * @param string $id |
||
41 | * @param array|string|null $options |
||
42 | * |
||
43 | * @return self |
||
44 | */ |
||
45 | 2 | public static function retrieve($id, $options = null) |
|
49 | |||
50 | /** |
||
51 | * Create the 3D Secure object. |
||
52 | * |
||
53 | * @param array|null $params |
||
54 | * @param array|string|null $options |
||
55 | * |
||
56 | * @return self |
||
57 | */ |
||
58 | 2 | public static function create($params = [], $options = null) |
|
62 | } |
||
63 |