for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Lamoda\IsmpClient\V4\Dto\FacadeDocBodyResponse\Body;
class DocumentDescription
{
/**
* @var string|null
*/
private $participantInn;
private $markingType;
private $productionDate;
private $productionType;
private $producerInn;
private $ownerInn;
public function getParticipantInn(): ?string
return $this->participantInn;
}
public function setParticipantInn(?string $participantInn): self
$this->participantInn = $participantInn;
return $this;
public function getMarkingType(): ?string
return $this->markingType;
public function setMarkingType(?string $markingType): self
$this->markingType = $markingType;
public function getProductionDate(): ?string
return $this->productionDate;
public function setProductionDate(?string $productionDate): self
$this->productionDate = $productionDate;
public function getProductionType(): ?string
return $this->productionType;
public function setProductionType(?string $productionType): self
$this->productionType = $productionType;
public function getProducerInn(): ?string
return $this->producerInn;
public function setProducerInn(?string $producerInn): self
$this->producerInn = $producerInn;
public function getOwnerInn(): ?string
return $this->ownerInn;
public function setOwnerInn(?string $ownerInn): self
$this->ownerInn = $ownerInn;