com.increase.api.services.blocking.InboundCheckDepositService.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.blocking
import com.increase.api.core.RequestOptions
import com.increase.api.models.InboundCheckDeposit
import com.increase.api.models.InboundCheckDepositDeclineParams
import com.increase.api.models.InboundCheckDepositListPage
import com.increase.api.models.InboundCheckDepositListParams
import com.increase.api.models.InboundCheckDepositRetrieveParams
import com.increase.api.models.InboundCheckDepositReturnParams
interface InboundCheckDepositService {
/** Retrieve an Inbound Check Deposit */
@JvmOverloads
fun retrieve(
params: InboundCheckDepositRetrieveParams,
requestOptions: RequestOptions = RequestOptions.none()
): InboundCheckDeposit
/** List Inbound Check Deposits */
@JvmOverloads
fun list(
params: InboundCheckDepositListParams,
requestOptions: RequestOptions = RequestOptions.none()
): InboundCheckDepositListPage
/** Decline an Inbound Check Deposit */
@JvmOverloads
fun decline(
params: InboundCheckDepositDeclineParams,
requestOptions: RequestOptions = RequestOptions.none()
): InboundCheckDeposit
/** Return an Inbound Check Deposit */
@JvmOverloads
fun return_(
params: InboundCheckDepositReturnParams,
requestOptions: RequestOptions = RequestOptions.none()
): InboundCheckDeposit
}