Package-level declarations

Types

Link copied to clipboard
Link copied to clipboard
sealed interface AuthType
Link copied to clipboard
@Serializable
data class HttpErrorResponse(val code: String?, val message: String?, val type: String?)
Link copied to clipboard
class HttpExceptions(response: HttpResponse, failureReason: String?, cachedResponseText: String) : ResponseException
Link copied to clipboard
Link copied to clipboard
data class KtorProvider(val httpClient: HttpClient)
Link copied to clipboard
class KtorWrapper(val ktorProvider: KtorProvider, val authSessionManager: AuthSessionManager, val merchantPublishableKey: PublishableKey)
Link copied to clipboard
Link copied to clipboard
data class PaymentSession(val clientSecret: String, val ansaCustomerId: String)
Link copied to clipboard
Link copied to clipboard
typealias UserAgent = String

Properties

Link copied to clipboard
val HttpResponse.duration: Long
Link copied to clipboard

Functions

Link copied to clipboard
inline suspend fun <T : Any, R : Any> HttpClient.deleteResult(resource: T, builder: HttpRequestBuilder.() -> Unit = {}): ApiResult<R>
Link copied to clipboard
inline fun <T : Any> ApiResult<T>.getOrNull(): T?
Link copied to clipboard
inline suspend fun <T : Any, R : Any> HttpClient.getResult(resource: T, builder: HttpRequestBuilder.() -> Unit = {}): ApiResult<R>
Link copied to clipboard
inline fun <R : Any, T : Any> ApiResult<T>.map(transform: (value: T) -> R?): ApiResult<R>
Link copied to clipboard
inline fun <T : Any> ApiResult<T>.onError(block: (Throwable) -> Unit): ApiResult<T>
Link copied to clipboard
inline fun <T : Any> ApiResult<T>.onSuccess(block: (T) -> Unit): ApiResult<T>
Link copied to clipboard
inline suspend fun <T : Any, R : Any> HttpClient.postResult(resource: T, builder: HttpRequestBuilder.() -> Unit = {}): ApiResult<R>
inline suspend fun <T : Any, B, R : Any> HttpClient.postResult(resource: T, body: B, builder: HttpRequestBuilder.() -> Unit = {}): ApiResult<R>
inline suspend fun <B, R : Any> HttpClient.postResult(url: String, body: B, builder: HttpRequestBuilder.() -> Unit = {}): ApiResult<R>
Link copied to clipboard
inline suspend fun <R : Any> requestCatching(block: () -> HttpResponse): ApiResult<R>

Takes in a block lambda that returns an HttpResponse from Ktor Internally, tries to convert the response into a response body defined by the generic R If success (2XX response), return ApiResult.Success If error (3XX - 5XX response), try to figure out error type and return ApiResult.Failure

Link copied to clipboard
inline suspend fun <T> HttpResponse.safeBody(): Result<T>
Link copied to clipboard