fix(json): DTO 직렬화 이름을 고정한다
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
package kr.co.vividnext.sodalive.audio_content.playlist.modify
|
||||
|
||||
import androidx.annotation.Keep
|
||||
import com.google.gson.annotations.SerializedName
|
||||
import kr.co.vividnext.sodalive.audio_content.playlist.create.PlaylistContentIdAndOrder
|
||||
|
||||
@Keep
|
||||
data class UpdatePlaylistRequest(
|
||||
@SerializedName("title") val title: String? = null,
|
||||
@SerializedName("desc") val desc: String? = null,
|
||||
|
||||
@@ -1,17 +1,18 @@
|
||||
package kr.co.vividnext.sodalive.chat.original
|
||||
|
||||
import androidx.annotation.Keep
|
||||
import com.google.gson.annotations.SerializedName
|
||||
|
||||
@Keep
|
||||
data class OriginalWorkListResponse(
|
||||
val totalCount: Long,
|
||||
val content: List<OriginalWorkListItemResponse>
|
||||
@SerializedName("totalCount") val totalCount: Long,
|
||||
@SerializedName("content") val content: List<OriginalWorkListItemResponse>
|
||||
)
|
||||
|
||||
@Keep
|
||||
data class OriginalWorkListItemResponse(
|
||||
val id: Long,
|
||||
val imageUrl: String?,
|
||||
val title: String,
|
||||
val contentType: String
|
||||
@SerializedName("id") val id: Long,
|
||||
@SerializedName("imageUrl") val imageUrl: String?,
|
||||
@SerializedName("title") val title: String,
|
||||
@SerializedName("contentType") val contentType: String
|
||||
)
|
||||
|
||||
@@ -1,3 +1,9 @@
|
||||
package kr.co.vividnext.sodalive.mypage.auth
|
||||
|
||||
data class AuthResponse(val gender: Int)
|
||||
import androidx.annotation.Keep
|
||||
import com.google.gson.annotations.SerializedName
|
||||
|
||||
@Keep
|
||||
data class AuthResponse(
|
||||
@SerializedName("gender") val gender: Int
|
||||
)
|
||||
|
||||
@@ -14,6 +14,7 @@ data class PayverseChargeResponse(
|
||||
@SerializedName("payloadJson") val payloadJson: String
|
||||
)
|
||||
|
||||
@Keep
|
||||
data class PayverseVerifyRequest(
|
||||
@SerializedName("transactionId") val transactionId: String,
|
||||
@SerializedName("orderId") val orderId: String
|
||||
|
||||
Reference in New Issue
Block a user