오디션
- 오디션 알림 받기 설정 추가
This commit is contained in:
@@ -12,7 +12,9 @@ data class GetMemberInfoResponse(
|
||||
@SerializedName("followingChannelLiveNotice")
|
||||
val followingChannelLiveNotice: Boolean?,
|
||||
@SerializedName("followingChannelUploadContentNotice")
|
||||
val followingChannelUploadContentNotice: Boolean?
|
||||
val followingChannelUploadContentNotice: Boolean?,
|
||||
@SerializedName("auditionNotice")
|
||||
val auditionNotice: Boolean?
|
||||
)
|
||||
|
||||
enum class MemberRole {
|
||||
|
||||
@@ -7,5 +7,6 @@ import com.google.gson.annotations.SerializedName
|
||||
data class UpdateNotificationSettingRequest(
|
||||
@SerializedName("live") var live: Boolean? = null,
|
||||
@SerializedName("uploadContent") var uploadContent: Boolean? = null,
|
||||
@SerializedName("message") var message: Boolean? = null
|
||||
@SerializedName("message") var message: Boolean? = null,
|
||||
@SerializedName("audition") var audition: Boolean? = null
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user