fix(member-info): 구서버 멤버정보 누락 필드 하위 호환을 보장한다

This commit is contained in:
2026-03-28 18:28:09 +09:00
parent 4815cac49b
commit 9dfad913bc
4 changed files with 136 additions and 6 deletions

View File

@@ -21,11 +21,11 @@ data class GetMemberInfoResponse(
@SerializedName("auditionNotice")
val auditionNotice: Boolean?,
@SerializedName("countryCode")
val countryCode: String,
val countryCode: String? = null,
@SerializedName("isAdultContentVisible")
val isAdultContentVisible: Boolean,
val isAdultContentVisible: Boolean? = null,
@SerializedName("contentType")
val contentType: ContentType
val contentType: ContentType? = null
)
enum class MemberRole {