| Total Complexity | 6 |
| Total Lines | 68 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 8 | final class RiskFactors |
||
| 9 | { |
||
| 10 | const DELIVERY_TYPE_EMAIL = "EMAIL"; |
||
| 11 | const DELIVERY_TYPE_SHOP = "SHOP"; |
||
| 12 | const DELIVERY_TYPE_HOMEDELIVERY = "HOMEDELIVERY"; |
||
| 13 | const DELIVERY_TYPE_PICKUP = "PICKUP"; |
||
| 14 | const DELIVERY_TYPE_HQ = "HQ"; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var string|null |
||
| 18 | * @SerializedName("DeliveryType") |
||
| 19 | */ |
||
| 20 | private $deliveryType; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var string|null |
||
| 24 | * @SerializedName("AccountCreationDate") |
||
| 25 | * @Type("string") |
||
| 26 | */ |
||
| 27 | private $accountCreationDate; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var string|null |
||
| 31 | * @SerializedName("PasswordLastChangeDate") |
||
| 32 | * @Type("string") |
||
| 33 | */ |
||
| 34 | private $passwordLastChangeDate; |
||
| 35 | |||
| 36 | |||
| 37 | public function getDeliveryType(): ?string |
||
| 38 | { |
||
| 39 | return $this->deliveryType; |
||
| 40 | } |
||
| 41 | |||
| 42 | |||
| 43 | public function setDeliveryType(?string $deliveryType): self |
||
| 44 | { |
||
| 45 | $this->deliveryType = $deliveryType; |
||
| 46 | |||
| 47 | return $this; |
||
| 48 | } |
||
| 49 | |||
| 50 | |||
| 51 | public function getAccountCreationDate(): ?string |
||
| 54 | } |
||
| 55 | |||
| 56 | |||
| 57 | public function setAccountCreationDate(?string $accountCreationDate): self |
||
| 62 | } |
||
| 63 | |||
| 64 | |||
| 65 | public function getPasswordLastChangeDate(): ?string |
||
| 66 | { |
||
| 67 | return $this->passwordLastChangeDate; |
||
| 68 | } |
||
| 69 | |||
| 70 | |||
| 71 | public function setPasswordLastChangeDate(?string $passwordLastChangeDate): self |
||
| 76 | } |
||
| 77 | } |
||
| 78 |