We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86ee0fa commit d054f17Copy full SHA for d054f17
core/model/src/main/kotlin/com/bff/wespot/model/auth/request/SignIn.kt
@@ -0,0 +1,7 @@
1
+package com.bff.wespot.model.auth.request
2
+
3
+data class SignIn(
4
+ val accessToken: String,
5
+ val versionName: String,
6
+ val socialType: String = "KAKAO",
7
+)
data-remote/src/main/kotlin/com/bff/wespot/data/remote/model/auth/request/KakaoAuthTokenDto.kt data-remote/src/main/kotlin/com/bff/wespot/data/remote/model/auth/request/SignInDto.kt
@@ -1,10 +1,12 @@
package com.bff.wespot.data.remote.model.auth.request
+import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
@Serializable
-data class KakaoAuthTokenDto(
+data class SignInDto(
8
val socialType: String,
9
val identityToken: String,
10
val fcmToken: String,
-)
11
+ @SerialName("androidVersionName") val versionName: String,
12
0 commit comments