| Total Complexity | 1 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 28 | class PaymentOptionVariantEntity extends MessageEntity |
||
| 29 | { |
||
| 30 | /** @var string - Variant UUID */ |
||
| 31 | protected $variantId; |
||
| 32 | |||
| 33 | /** @var null|string - Variant name */ |
||
| 34 | protected $name; |
||
| 35 | |||
| 36 | /** @var bool */ |
||
| 37 | protected $acceptFee; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return string |
||
| 41 | */ |
||
| 42 | public function getId() |
||
| 47 |