Updated on 2026-08-14

This commit is contained in:
Tangem 2024-02-14 15:03:07 +03:00
parent fc1591532c
commit 3a4ce4d24b
10 changed files with 99 additions and 7 deletions

View file

@ -5,7 +5,7 @@ import com.squareup.moshi.JsonClass
@JsonClass(generateAdapter = true)
data class CreateUserNetworkAccountResponse(
@Json(name = "status") val status: String,
@Json(name = "status") val status: Boolean,
@Json(name = "data") val data: AccountCreated,
) {