Updated on 2026-08-14

This commit is contained in:
Tangem 2025-01-29 16:55:54 +03:00
parent d8348757d2
commit 2d67f5a8fd
10 changed files with 135 additions and 35 deletions

View file

@ -3,12 +3,14 @@ package com.tangem.lib.visa.api
import com.tangem.datasource.api.common.response.ApiResponse
import com.tangem.lib.visa.model.VisaTxHistoryResponse
import retrofit2.http.GET
import retrofit2.http.Header
import retrofit2.http.Query
interface VisaApi {
@GET("transaction")
suspend fun getTxHistory(
@Header("Authorization") authorizationHeader: String,
@Query("card_public_key") cardPublicKey: String,
@Query("limit") limit: Int,
@Query("offset") offset: Int,