@SerializedName 추가
This commit is contained in:
parent
dc028f297d
commit
d791147886
|
@ -1,7 +1,9 @@
|
||||||
package kr.co.vividnext.sodalive.audio_content.comment
|
package kr.co.vividnext.sodalive.audio_content.comment
|
||||||
|
|
||||||
|
import com.google.gson.annotations.SerializedName
|
||||||
|
|
||||||
data class ModifyCommentRequest(
|
data class ModifyCommentRequest(
|
||||||
val commentId: Long,
|
@SerializedName("commentId") val commentId: Long,
|
||||||
var comment: String? = null,
|
@SerializedName("comment") var comment: String? = null,
|
||||||
var isActive: Boolean? = null
|
@SerializedName("isActive") var isActive: Boolean? = null
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue