Updated on 2026-08-14

This commit is contained in:
Tangem 2024-05-15 18:34:40 +05:00
parent e106417f40
commit 3736148531
8 changed files with 62 additions and 4 deletions

View file

@ -82,4 +82,7 @@ interface TangemTechApi {
@Header("card_id") cardId: String,
@Body body: CreateUserNetworkAccountBody,
): ApiResponse<CreateUserNetworkAccountResponse>
@GET("features")
suspend fun getFeatures(): ApiResponse<FeaturesResponse>
}

View file

@ -0,0 +1,7 @@
package com.tangem.datasource.api.tangemTech.models
import com.squareup.moshi.Json
data class FeaturesResponse(
@Json(name = "send") val isNewSendEnabled: Boolean,
)