Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Add organizationFiscalCode to PaymentOption & Transfer models #51

Merged
merged 3 commits into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<description>Progetto Gestione Pagamenti Spontanei</description>

<properties>
<java.version>11</java.version>
<java.version>17</java.version>
<testcontainers.version>1.17.2</testcontainers.version>
<springfox-version>3.0.0</springfox-version>
<springdoc-version>1.6.9</springdoc-version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ public class PaymentOptionModel implements Serializable {
@NotBlank(message = "iuv is required")
private String iuv;

@NotBlank(message = "nav is required")
private String nav;

@NotBlank(message = "amount is required")
private long amount;

Expand All @@ -38,6 +41,8 @@ public class PaymentOptionModel implements Serializable {

private LocalDateTime retentionDate;

private String organizationFiscalCode;

private long fee;

@Builder.Default
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,6 @@ public class TransferModel implements Serializable {
private String postalIban;

private StampModel stamp;

private String organizationFiscalCode;
}
Loading