Merge pull request #575 from langfr/fix_compile_20241123

Fix compilation problems.
This commit is contained in:
Jochen Staerk
2024-12-03 13:29:15 +01:00
committed by GitHub
3 changed files with 17 additions and 6 deletions

View File

@@ -46,8 +46,18 @@ public class DirectDebit implements IZUGFeRDTradeSettlementDebit {
return this.IBAN;
}
public DirectDebit setIBAN(String iBAN) {
this.IBAN = iBAN;
return this;
}
@Override
public String getMandate() {
return this.mandate;
}
public DirectDebit setMandate(String mandate) {
this.mandate = mandate;
return this;
}
}

View File

@@ -26,7 +26,7 @@ public class FileAttachment {
this.mimetype = mimetype;
this.relation = relation;
this.data = data;
description = "Additional file attachment";
this.description = "Additional file attachment";
}
public String getDescription() {
@@ -73,8 +73,4 @@ public class FileAttachment {
this.data = data;
return this;
}
}

View File

@@ -72,10 +72,15 @@ public class IncludedNote {
return content;
}
public IncludedNote setContent(String content) {
this.content = content;
return this;
}
public SubjectCode getSubjectCode() {
return subjectCode;
}
public IncludedNote setSubjectCode(SubjectCode subjectCode) {
this.subjectCode = subjectCode;