for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Lamoda\OmsClient\V2\Dto;
final class CreateOrderForEmissionICResponse
{
/**
* @var string
*/
private $omsId;
private $orderId;
* @var int
private $expectedCompletionTime;
public function __construct(string $omsId, string $orderId, int $expectedCompletionTime)
$this->omsId = $omsId;
$this->orderId = $orderId;
$this->expectedCompletionTime = $expectedCompletionTime;
}
public function getOmsId(): string
return $this->omsId;
public function getOrderId(): string
return $this->orderId;
public function getExpectedCompletionTime(): int
return $this->expectedCompletionTime;