1 | <?php namespace Arcanedev\Stripe\Resources; |
||
12 | class ExchangeRate extends StripeResource implements ExchangeRateContract |
||
13 | { |
||
14 | /* ----------------------------------------------------------------- |
||
15 | | Getters & Setters |
||
16 | | ----------------------------------------------------------------- |
||
17 | */ |
||
18 | |||
19 | /** |
||
20 | * Get The name of the class, with namespacing and underscores stripped. |
||
21 | * |
||
22 | * @param string $class |
||
23 | * |
||
24 | * @return string |
||
25 | */ |
||
26 | public static function className($class = '') |
||
30 | |||
31 | /* ----------------------------------------------------------------- |
||
32 | | Main Methods |
||
33 | | ----------------------------------------------------------------- |
||
34 | */ |
||
35 | |||
36 | /** |
||
37 | * @param array|string $currency |
||
38 | * @param array|string|null $options |
||
39 | * |
||
40 | * @return self |
||
41 | */ |
||
42 | 2 | public static function retrieve($currency, $options = null) |
|
46 | |||
47 | /** |
||
48 | * @param array|null $params |
||
49 | * @param array|string|null $options |
||
50 | * |
||
51 | * @return \Arcanedev\Stripe\Collection |
||
52 | */ |
||
53 | 2 | public static function all($params = null, $options = null) |
|
57 | } |
||
58 |