| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 8 | final class DirectDebit |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var string|null |
||
| 12 | * @SerializedName("MandateId") |
||
| 13 | * @Type("string") |
||
| 14 | */ |
||
| 15 | private $mandateId; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var string|null |
||
| 19 | * @SerializedName("CreditorId") |
||
| 20 | * @Type("string") |
||
| 21 | */ |
||
| 22 | private $creditorId; |
||
| 23 | |||
| 24 | public function getMandateId(): ?string |
||
| 25 | { |
||
| 26 | return $this->mandateId; |
||
| 27 | } |
||
| 28 | |||
| 29 | public function getCreditorId(): ?string |
||
| 32 | } |
||
| 33 | } |
||
| 34 |