34 lines
1.2 KiB
Java
34 lines
1.2 KiB
Java
|
package com.scb.phone.data.network.service;
|
||
|
|
||
|
import com.scb.phone.data.entity.transfer.SingleDataEntity;
|
||
|
import o.AbstractC13163fSk;
|
||
|
import o.BXG;
|
||
|
import o.C5947cE;
|
||
|
import o.C6052cH;
|
||
|
import retrofit2.http.Body;
|
||
|
import retrofit2.http.GET;
|
||
|
import retrofit2.http.POST;
|
||
|
import retrofit2.http.PUT;
|
||
|
import retrofit2.http.Path;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public interface PartnerConsentService {
|
||
|
@GET("partners/v3/consent/{sessionId}")
|
||
|
AbstractC13163fSk<SingleDataEntity<BXG>> getPartnerConsent(@Path("sessionId") String str);
|
||
|
|
||
|
@GET("partners/v3/consent/transactions/{transactionId}")
|
||
|
AbstractC13163fSk<SingleDataEntity<BXG>> getPartnerConsentWithTransactionId(@Path("transactionId") String str);
|
||
|
|
||
|
@POST("partners/v3/consent")
|
||
|
AbstractC13163fSk<SingleDataEntity<BXG>> postPartnerConsent(@Body C5947cE c5947cE);
|
||
|
|
||
|
@POST("partners/v3/consent/transactions")
|
||
|
AbstractC13163fSk<SingleDataEntity<BXG>> postPartnerConsentWithTransactionId(@Body C6052cH c6052cH);
|
||
|
|
||
|
@PUT("partners/v3/consent")
|
||
|
AbstractC13163fSk<SingleDataEntity<BXG>> putPartnerConsent(@Body C5947cE c5947cE);
|
||
|
|
||
|
@PUT("partners/v3/consent/transactions")
|
||
|
AbstractC13163fSk<SingleDataEntity<BXG>> putPartnerConsentWithTransactionId(@Body C6052cH c6052cH);
|
||
|
}
|