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