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