| 1 | <?php | ||
| 7 | final class CreateOrderForEmissionICResponse | ||
| 8 | { | ||
| 9 | /** | ||
| 10 | * @var string | ||
| 11 | */ | ||
| 12 | private $omsId; | ||
| 13 | /** | ||
| 14 | * @var string | ||
| 15 | */ | ||
| 16 | private $orderId; | ||
| 17 | /** | ||
| 18 | * @var int | ||
| 19 | */ | ||
| 20 | private $expectedCompleteTimestamp; | ||
| 21 | |||
| 22 | public function __construct(string $omsId, string $orderId, int $expectedCompleteTimestamp) | ||
| 28 | |||
| 29 | public function getOmsId(): string | ||
| 33 | |||
| 34 | public function getOrderId(): string | ||
| 38 | |||
| 39 | public function getExpectedCompleteTimestamp(): int | ||
| 43 | } |