1 | <?php |
||
27 | final class Price implements ObjectInitializedInterface { |
||
28 | /** |
||
29 | * @var string currency code, as defined by ISO 4217 |
||
30 | */ |
||
31 | private $currency = ''; |
||
32 | |||
33 | /** |
||
34 | * @var string price in millionths of the currency base unit represented as a string |
||
35 | */ |
||
36 | private $priceMicros = ''; |
||
37 | |||
38 | /** |
||
39 | * @return string currency code, as defined by ISO 4217 |
||
40 | */ |
||
41 | 2 | public function getCurrency() { |
|
44 | |||
45 | /** |
||
46 | * @return string price in millionths of the currency base unit represented as a string |
||
47 | */ |
||
48 | 2 | public function getPriceMicros() { |
|
51 | |||
52 | /** |
||
53 | * @inheritdoc |
||
54 | */ |
||
55 | 1 | public static function initializeByObject(stdClass $Object) { |
|
61 | } |
||
62 |