Skip to content

Commit 099bfd2

Browse files
[SELC - 4788] feat: added taxCodeInvoicing to api V2 (#242)
1 parent 5a54e30 commit 099bfd2

File tree

11 files changed

+1149
-1345
lines changed

11 files changed

+1149
-1345
lines changed

app/src/main/resources/swagger/api-docs.json

+8
Original file line numberDiff line numberDiff line change
@@ -1289,6 +1289,10 @@
12891289
"type" : "string",
12901290
"description" : "Institution's taxCode"
12911291
},
1292+
"taxCodeInvoicing" : {
1293+
"type" : "string",
1294+
"description" : "Institution's taxCodeInvoicing"
1295+
},
12921296
"vatNumber" : {
12931297
"type" : "string",
12941298
"description" : "Institution's VAT number"
@@ -1707,6 +1711,10 @@
17071711
"type" : "string",
17081712
"description" : "Institution's taxCode"
17091713
},
1714+
"taxCodeInvoicing" : {
1715+
"type" : "string",
1716+
"description" : "Institution's taxCodeInvoicing"
1717+
},
17101718
"userProductRoles" : {
17111719
"type" : "array",
17121720
"description" : "Logged user's roles on product",

connector-api/src/main/java/it/pagopa/selfcare/external_api/model/onboarding/Billing.java

+1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ public class Billing {
77
private String vatNumber;
88
private String recipientCode;
99
private Boolean publicServices;
10+
private String taxCodeInvoicing;
1011
}

0 commit comments

Comments
 (0)