com.increase.api.services.async.CardPaymentServiceAsync.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of increase-java-core Show documentation
Show all versions of increase-java-core Show documentation
An SDK library for increase
The newest version!
// File generated from our OpenAPI spec by Stainless.
@file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102
package com.increase.api.services.async
import com.increase.api.core.RequestOptions
import com.increase.api.models.CardPayment
import com.increase.api.models.CardPaymentListPageAsync
import com.increase.api.models.CardPaymentListParams
import com.increase.api.models.CardPaymentRetrieveParams
import java.util.concurrent.CompletableFuture
interface CardPaymentServiceAsync {
/** Retrieve a Card Payment */
@JvmOverloads
fun retrieve(
params: CardPaymentRetrieveParams,
requestOptions: RequestOptions = RequestOptions.none()
): CompletableFuture
/** List Card Payments */
@JvmOverloads
fun list(
params: CardPaymentListParams,
requestOptions: RequestOptions = RequestOptions.none()
): CompletableFuture
}