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

com.increase.api.services.async.AccountStatementServiceAsync.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.async

import com.increase.api.core.RequestOptions
import com.increase.api.models.AccountStatement
import com.increase.api.models.AccountStatementListPageAsync
import com.increase.api.models.AccountStatementListParams
import com.increase.api.models.AccountStatementRetrieveParams

interface AccountStatementServiceAsync {

    /** Retrieve an Account Statement */
    suspend fun retrieve(
        params: AccountStatementRetrieveParams,
        requestOptions: RequestOptions = RequestOptions.none()
    ): AccountStatement

    /** List Account Statements */
    suspend fun list(
        params: AccountStatementListParams,
        requestOptions: RequestOptions = RequestOptions.none()
    ): AccountStatementListPageAsync
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy