-
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-4667] Fix: Refactor update user request (#403)
- Loading branch information
1 parent
d43a07f
commit e733f73
Showing
14 changed files
with
1,215 additions
and
1,498 deletions.
There are no files selected for viewing
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
10 changes: 10 additions & 0 deletions
10
...src/main/java/it/pagopa/selfcare/dashboard/connector/model/user/UpdateUserRequestDto.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,10 @@ | ||
package it.pagopa.selfcare.dashboard.connector.model.user; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class UpdateUserRequestDto { | ||
private String name; | ||
private String surname; | ||
private String email; | ||
} |
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 |
---|---|---|
@@ -1,15 +1,3 @@ | ||
/* | ||
* Party Process Micro Service | ||
* This service is the party process | ||
* | ||
* OpenAPI spec version: {{version}} | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by the swagger code generator program. | ||
* https://github.com/swagger-api/swagger-codegen.git | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
package it.pagopa.selfcare.dashboard.connector.model.user; | ||
|
||
import it.pagopa.selfcare.commons.base.security.SelfCareAuthority; | ||
|
@@ -29,6 +17,7 @@ public class UserInfo { | |
private Map<String, ProductInfo> products; | ||
private String status; | ||
private String institutionId; | ||
private String userMailUuid; | ||
|
||
@Data | ||
public static class UserInfoFilter { | ||
|
Oops, something went wrong.