-
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.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
8 changed files
with
91 additions
and
2 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
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
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,5 +1,6 @@ | ||
package com.cabin.plat.domain.member.dto; | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema; | ||
import lombok.Builder; | ||
import lombok.Getter; | ||
|
||
|
@@ -14,6 +15,7 @@ public class MemberRequest { | |
@AllArgsConstructor | ||
@NoArgsConstructor | ||
public static class Avatar { | ||
@Schema(description = "아바타 이미지 URL", defaultValue = "https://example.com/avatar.png") | ||
private String avatar; | ||
} | ||
|
||
|
@@ -22,7 +24,10 @@ public static class Avatar { | |
@AllArgsConstructor | ||
@NoArgsConstructor | ||
public static class MemberSignInByEncryptedUserIdentifier { | ||
@Schema(description = "암호화된 사용자 식별자", defaultValue = "encryptedUserId123") | ||
private String encryptedUserIdentifier; | ||
|
||
@Schema(description = "소셜 타입", defaultValue = "APPLE") | ||
private SocialType socialType; | ||
} | ||
|
||
|
@@ -31,8 +36,13 @@ public static class MemberSignInByEncryptedUserIdentifier { | |
@AllArgsConstructor | ||
@NoArgsConstructor | ||
public static class MemberAppleSocialSignIn { | ||
@Schema(description = "암호화된 사용자 식별자", defaultValue = "encryptedUserId123") | ||
private String encryptedUserIdentifier; | ||
|
||
@Schema(description = "사용자 전체 이름", defaultValue = "조플랫") | ||
private String fullName; | ||
|
||
@Schema(description = "사용자 이메일", defaultValue = "[email protected]") | ||
private String email; | ||
} | ||
|
||
|
@@ -41,6 +51,7 @@ public static class MemberAppleSocialSignIn { | |
@AllArgsConstructor | ||
@NoArgsConstructor | ||
public static class MemberNickname { | ||
@Schema(description = "사용자 닉네임", defaultValue = "plat") | ||
private String nickname; | ||
} | ||
} |
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
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