All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.increase.api.services.blocking.InboundCheckDepositService.kt Maven / Gradle / Ivy

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 */
    fun retrieve(
        params: InboundCheckDepositRetrieveParams,
        requestOptions: RequestOptions = RequestOptions.none()
    ): InboundCheckDeposit

    /** List Inbound Check Deposits */
    fun list(
        params: InboundCheckDepositListParams,
        requestOptions: RequestOptions = RequestOptions.none()
    ): InboundCheckDepositListPage

    /** Decline an Inbound Check Deposit */
    fun decline(
        params: InboundCheckDepositDeclineParams,
        requestOptions: RequestOptions = RequestOptions.none()
    ): InboundCheckDeposit

    /** Return an Inbound Check Deposit */
    fun return_(
        params: InboundCheckDepositReturnParams,
        requestOptions: RequestOptions = RequestOptions.none()
    ): InboundCheckDeposit
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy