-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SELC-5692] Feat: Updated selfcare onboarding openapi and related API (…
- Loading branch information
1 parent
8e7b300
commit cfcb5a3
Showing
12 changed files
with
234 additions
and
409 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
27 changes: 27 additions & 0 deletions
27
...main/java/it/pagopa/selfcare/onboarding/connector/model/institutions/AggregateResult.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package it.pagopa.selfcare.onboarding.connector.model.institutions; | ||
|
||
import lombok.Data; | ||
|
||
import java.util.List; | ||
|
||
@Data | ||
public class AggregateResult { | ||
private String subunitCode; | ||
private String subunitType; | ||
private String description; | ||
private String codeSDI; | ||
private String digitalAddress; | ||
private String taxCode; | ||
private String vatNumber; | ||
private String address; | ||
private String city; | ||
private String county; | ||
private String zipCode; | ||
private String originId; | ||
private String origin; | ||
private String taxCodePT; | ||
private String iban; | ||
private String service; | ||
private String syncAsyncMode; | ||
private List<AggregateUserResult> users = null; | ||
} |
12 changes: 12 additions & 0 deletions
12
.../java/it/pagopa/selfcare/onboarding/connector/model/institutions/AggregateUserResult.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package it.pagopa.selfcare.onboarding.connector.model.institutions; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class AggregateUserResult { | ||
private String name; | ||
private String surname; | ||
private String taxCode; | ||
private String email; | ||
private String role; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.