Updated on 2026-08-14

This commit is contained in:
Tangem 2024-02-21 19:04:03 +00:00
commit e4244ab555
2 changed files with 2 additions and 2 deletions

View file

@ -6,5 +6,5 @@ import com.squareup.moshi.JsonClass
@JsonClass(generateAdapter = true)
data class CreateUserNetworkAccountBody(
@Json(name = "networkId") val networkId: String,
@Json(name = "walletPublicKey") val publicWalletKey: String,
@Json(name = "walletPublicKey") val walletPublicKey: String,
)

View file

@ -12,6 +12,6 @@ data class CreateUserNetworkAccountResponse(
@JsonClass(generateAdapter = true)
data class AccountCreated(
@Json(name = "accountId") val accountId: String,
@Json(name = "publicWalletKey") val publicWalletKey: String,
@Json(name = "walletPublicKey") val walletPublicKey: String,
)
}