| 1 | <?php |
||
| 8 | class PurchaseParam |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Country Id. |
||
| 12 | * |
||
| 13 | * @var int |
||
| 14 | */ |
||
| 15 | public $countryId; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Price Point Id. |
||
| 19 | * |
||
| 20 | * @var int |
||
| 21 | */ |
||
| 22 | public $pricePointId; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Payment Method Id. |
||
| 26 | * |
||
| 27 | * @var int |
||
| 28 | */ |
||
| 29 | public $paymentMethodId; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Create a new Purchase Param. |
||
| 33 | * |
||
| 34 | * @param int $countryId |
||
| 35 | * @param int $pricePointId |
||
| 36 | * @param int $paymentMethodId |
||
| 37 | */ |
||
| 38 | public function __construct(int $countryId, int $pricePointId, int $paymentMethodId) |
||
| 44 | } |
||
| 45 |