com.increase.api.services.async.InboundAchTransferServiceAsync.kt Maven / Gradle / Ivy
// File generated from our OpenAPI spec by Stainless.
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
interface InboundAchTransferServiceAsync {
/** Retrieve an Inbound ACH Transfer */
suspend fun retrieve(
params: InboundAchTransferRetrieveParams,
requestOptions: RequestOptions = RequestOptions.none()
): InboundAchTransfer
/** List Inbound ACH Transfers */
suspend fun list(
params: InboundAchTransferListParams,
requestOptions: RequestOptions = RequestOptions.none()
): InboundAchTransferListPageAsync
/** Create a notification of change for an Inbound ACH Transfer */
suspend fun createNotificationOfChange(
params: InboundAchTransferCreateNotificationOfChangeParams,
requestOptions: RequestOptions = RequestOptions.none()
): InboundAchTransfer
/** Decline an Inbound ACH Transfer */
suspend fun decline(
params: InboundAchTransferDeclineParams,
requestOptions: RequestOptions = RequestOptions.none()
): InboundAchTransfer
/** Return an Inbound ACH Transfer */
suspend fun transferReturn(
params: InboundAchTransferTransferReturnParams,
requestOptions: RequestOptions = RequestOptions.none()
): InboundAchTransfer
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy