| 1 | <?php |
||
| 5 | class Form extends Callback |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var string |
||
| 9 | */ |
||
| 10 | protected $shopOrderId; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var float |
||
| 14 | */ |
||
| 15 | protected $amount; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * ISO 4217 currency code |
||
| 19 | * |
||
| 20 | * @var int |
||
| 21 | */ |
||
| 22 | protected $currency; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * ISO 639 alpha 2 language code |
||
| 26 | * |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | protected $language; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var boolean |
||
| 33 | */ |
||
| 34 | protected $embeddedWindow; |
||
| 35 | |||
| 36 | public function init() |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @return string |
||
| 47 | */ |
||
| 48 | public function getShopOrderId(): string |
||
| 52 | |||
| 53 | /** |
||
| 54 | * @return float |
||
| 55 | */ |
||
| 56 | public function getAmount(): float |
||
| 60 | |||
| 61 | /** |
||
| 62 | * @return int |
||
| 63 | */ |
||
| 64 | public function getCurrency(): int |
||
| 68 | |||
| 69 | /** |
||
| 70 | * @return string |
||
| 71 | */ |
||
| 72 | public function getLanguage(): string |
||
| 76 | |||
| 77 | /** |
||
| 78 | * @return bool |
||
| 79 | */ |
||
| 80 | public function isEmbeddedWindow(): bool |
||
| 84 | } |