com.increase.api.services.async.InboundAchTransferServiceAsync.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.InboundAchTransfer
import com.increase.api.models.InboundAchTransferCreateNotificationOfChangeParams
import com.increase.api.models.InboundAchTransferDeclineParams
import com.increase.api.models.InboundAchTransferListPageAsync
import com.increase.api.models.InboundAchTransferListParams
import com.increase.api.models.InboundAchTransferRetrieveParams
import com.increase.api.models.InboundAchTransferTransferReturnParams
import java.util.concurrent.CompletableFuture
interface InboundAchTransferServiceAsync {
/** Retrieve an Inbound ACH Transfer */
@JvmOverloads
fun retrieve(
params: InboundAchTransferRetrieveParams,
requestOptions: RequestOptions = RequestOptions.none()
): CompletableFuture
/** List Inbound ACH Transfers */
@JvmOverloads
fun list(
params: InboundAchTransferListParams,
requestOptions: RequestOptions = RequestOptions.none()
): CompletableFuture
/** Create a notification of change for an Inbound ACH Transfer */
@JvmOverloads
fun createNotificationOfChange(
params: InboundAchTransferCreateNotificationOfChangeParams,
requestOptions: RequestOptions = RequestOptions.none()
): CompletableFuture
/** Decline an Inbound ACH Transfer */
@JvmOverloads
fun decline(
params: InboundAchTransferDeclineParams,
requestOptions: RequestOptions = RequestOptions.none()
): CompletableFuture
/** Return an Inbound ACH Transfer */
@JvmOverloads
fun transferReturn(
params: InboundAchTransferTransferReturnParams,
requestOptions: RequestOptions = RequestOptions.none()
): CompletableFuture
}