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

com.increase.api.services.async.CardPurchaseSupplementServiceAsync.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.CardPurchaseSupplement
import com.increase.api.models.CardPurchaseSupplementListPageAsync
import com.increase.api.models.CardPurchaseSupplementListParams
import com.increase.api.models.CardPurchaseSupplementRetrieveParams

interface CardPurchaseSupplementServiceAsync {

    /** Retrieve a Card Purchase Supplement */
    suspend fun retrieve(
        params: CardPurchaseSupplementRetrieveParams,
        requestOptions: RequestOptions = RequestOptions.none()
    ): CardPurchaseSupplement

    /** List Card Purchase Supplements */
    suspend fun list(
        params: CardPurchaseSupplementListParams,
        requestOptions: RequestOptions = RequestOptions.none()
    ): CardPurchaseSupplementListPageAsync
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy