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