KtorWrapper

class KtorWrapper(val ktorProvider: KtorProvider, val authSessionManager: AuthSessionManager, val merchantPublishableKey: PublishableKey)

Constructors

Link copied to clipboard
constructor(ktorProvider: KtorProvider, authSessionManager: AuthSessionManager, merchantPublishableKey: PublishableKey)

Properties

Link copied to clipboard

Functions

Link copied to clipboard
inline suspend fun <T : Any, R : Any> deleteResult(resource: T, authType: AuthType, idempotencyKey: IdempotencyKey?): ApiResult<R>
Link copied to clipboard
inline suspend fun <T : Any, R : Any> getResult(resource: T, authType: AuthType, builder: HttpRequestBuilder.() -> Unit = {}): ApiResult<R>
Link copied to clipboard
suspend fun HttpRequestBuilder.handleAuth(authType: AuthType)
Link copied to clipboard
fun HttpRequestBuilder.handleIdempotency(providedKey: IdempotencyKey?)
Link copied to clipboard
fun HttpRequestBuilder.handleUserAgent()
Link copied to clipboard
inline suspend fun <T : Any, R : Any> postResult(resource: T, authType: AuthType, idempotencyKey: IdempotencyKey?): ApiResult<R>
inline suspend fun <T : Any, B, R : Any> postResult(resource: T, body: B, authType: AuthType, idempotencyKey: IdempotencyKey?): ApiResult<R>
inline suspend fun <B, R : Any> postResult(url: String, body: B, authType: AuthType, idempotencyKey: IdempotencyKey?): ApiResult<R>