com.increase.api.services.blocking.InboundAchTransferService.kt Maven / Gradle / Ivy
// 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.blocking
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.InboundAchTransferListPage
import com.increase.api.models.InboundAchTransferListParams
import com.increase.api.models.InboundAchTransferRetrieveParams
import com.increase.api.models.InboundAchTransferTransferReturnParams
interface InboundAchTransferService {
/** Retrieve an Inbound ACH Transfer */
fun retrieve(
params: InboundAchTransferRetrieveParams,
requestOptions: RequestOptions = RequestOptions.none()
): InboundAchTransfer
/** List Inbound ACH Transfers */
fun list(
params: InboundAchTransferListParams,
requestOptions: RequestOptions = RequestOptions.none()
): InboundAchTransferListPage
/** Create a notification of change for an Inbound ACH Transfer */
fun createNotificationOfChange(
params: InboundAchTransferCreateNotificationOfChangeParams,
requestOptions: RequestOptions = RequestOptions.none()
): InboundAchTransfer
/** Decline an Inbound ACH Transfer */
fun decline(
params: InboundAchTransferDeclineParams,
requestOptions: RequestOptions = RequestOptions.none()
): InboundAchTransfer
/** Return an Inbound ACH Transfer */
fun transferReturn(
params: InboundAchTransferTransferReturnParams,
requestOptions: RequestOptions = RequestOptions.none()
): InboundAchTransfer
}