src/Form/Model/ApplicationFilterModel.php line 8

Open in your IDE?
  1. <?php
  2. namespace App\Form\Model;
  3. use Symfony\Component\Serializer\Annotation\Context;
  4. use Symfony\Component\Serializer\Normalizer\DateTimeNormalizer;
  5. class ApplicationFilterModel
  6. {
  7.     private ?string $status null;
  8.     private ?string $tradeName null;
  9.     private ?string $legalName null;
  10.     private ?string $uic null;
  11.     private ?string $instance null;
  12.     private ?string $productName null;
  13.     private ?string $merchant null;
  14.     private ?string $mcc null;
  15.     private ?bool $isDeleted false;
  16.     #[Context([DateTimeNormalizer::FORMAT_KEY => 'd/m/Y'])]
  17.     private ?\DateTimeInterface $createdAtFrom null;
  18.     #[Context([DateTimeNormalizer::FORMAT_KEY => 'd/m/Y'])]
  19.     private ?\DateTimeInterface $createdAtTo null;
  20.     private ?string $jurisdiction null;
  21.     private ?string $countryOfIncorporation null;
  22.     private ?string $riskLevel null;
  23.     private ?string $reviewer null;
  24.     private ?string $companyMemberName null;
  25.     private ?string $companyMemberToken null;
  26.     public function getStatus(): ?string
  27.     {
  28.         return $this->status;
  29.     }
  30.     public function setStatus(?string $status): void
  31.     {
  32.         $this->status $status;
  33.     }
  34.     public function getTradeName(): ?string
  35.     {
  36.         return $this->tradeName;
  37.     }
  38.     public function setTradeName(?string $tradeName): void
  39.     {
  40.         $this->tradeName $tradeName;
  41.     }
  42.     public function getLegalName(): ?string
  43.     {
  44.         return $this->legalName;
  45.     }
  46.     public function setLegalName(?string $legalName): void
  47.     {
  48.         $this->legalName $legalName;
  49.     }
  50.     public function getUic(): ?string
  51.     {
  52.         return $this->uic;
  53.     }
  54.     public function setUic(?string $uic): void
  55.     {
  56.         $this->uic $uic;
  57.     }
  58.     public function getInstance(): ?string
  59.     {
  60.         return $this->instance;
  61.     }
  62.     public function setInstance(?string $instance): void
  63.     {
  64.         $this->instance $instance;
  65.     }
  66.     public function getProductName(): ?string
  67.     {
  68.         return $this->productName;
  69.     }
  70.     public function setProductName(?string $productName): void
  71.     {
  72.         $this->productName $productName;
  73.     }
  74.     public function getMerchant(): ?string
  75.     {
  76.         return $this->merchant;
  77.     }
  78.     public function setMerchant(?string $merchant): void
  79.     {
  80.         $this->merchant $merchant;
  81.     }
  82.     public function getMcc(): ?string
  83.     {
  84.         return $this->mcc;
  85.     }
  86.     public function setMcc(?string $mcc): void
  87.     {
  88.         $this->mcc $mcc;
  89.     }
  90.     public function getIsDeleted(): ?bool
  91.     {
  92.         return $this->isDeleted;
  93.     }
  94.     public function setIsDeleted(?bool $isDeleted): void
  95.     {
  96.         $this->isDeleted $isDeleted;
  97.     }
  98.     public function getCreatedAtFrom(): ?\DateTimeInterface
  99.     {
  100.         return $this->createdAtFrom;
  101.     }
  102.     public function setCreatedAtFrom(?\DateTimeInterface $createdAtFrom): void
  103.     {
  104.         $this->createdAtFrom $createdAtFrom;
  105.     }
  106.     public function getCreatedAtTo(): ?\DateTimeInterface
  107.     {
  108.         return $this->createdAtTo;
  109.     }
  110.     public function setCreatedAtTo(?\DateTimeInterface $createdAtTo): void
  111.     {
  112.         $this->createdAtTo $createdAtTo;
  113.     }
  114.     public function getJurisdiction(): ?string
  115.     {
  116.         return $this->jurisdiction;
  117.     }
  118.     public function setJurisdiction(?string $jurisdiction): void
  119.     {
  120.         $this->jurisdiction $jurisdiction;
  121.     }
  122.     public function getCountryOfIncorporation(): ?string
  123.     {
  124.         return $this->countryOfIncorporation;
  125.     }
  126.     public function setCountryOfIncorporation(?string $countryOfIncorporation): void
  127.     {
  128.         $this->countryOfIncorporation $countryOfIncorporation;
  129.     }
  130.     public function getRiskLevel(): ?string
  131.     {
  132.         return $this->riskLevel;
  133.     }
  134.     public function setRiskLevel(?string $riskLevel): void
  135.     {
  136.         $this->riskLevel $riskLevel;
  137.     }
  138.     public function getReviewer(): ?string
  139.     {
  140.         return $this->reviewer;
  141.     }
  142.     public function setReviewer(?string $reviewer): void
  143.     {
  144.         $this->reviewer $reviewer;
  145.     }
  146.     public function getCompanyMemberName(): ?string
  147.     {
  148.         return $this->companyMemberName;
  149.     }
  150.     public function setCompanyMemberName(?string $companyMemberName): void
  151.     {
  152.         $this->companyMemberName $companyMemberName;
  153.     }
  154.     public function getCompanyMemberToken(): ?string
  155.     {
  156.         return $this->companyMemberToken;
  157.     }
  158.     public function setCompanyMemberToken(?string $companyMemberToken): void
  159.     {
  160.         $this->companyMemberToken $companyMemberToken;
  161.     }
  162. }