1 | <?php |
||
5 | class Payment |
||
6 | { |
||
7 | public $id; |
||
8 | public $type; |
||
9 | public $amount; |
||
10 | public $currency; |
||
11 | public $description; |
||
12 | public $external_reference_number; |
||
13 | public $fee; |
||
14 | public $net_amount; |
||
15 | public $statement_descriptor; |
||
16 | public $status; |
||
17 | public $source; |
||
18 | public $created_at; |
||
19 | public $updated_at; |
||
20 | public $paid_at; |
||
21 | public $payout; |
||
22 | public $access_url; |
||
23 | public $billing; |
||
24 | |||
25 | public function setData($data) |
||
40 | |||
41 | protected function convertToObject($data) |
||
63 | } |
||
64 |