com.increase.api.services.async.DigitalWalletTokenServiceAsync.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.async
import com.increase.api.core.RequestOptions
import com.increase.api.models.DigitalWalletToken
import com.increase.api.models.DigitalWalletTokenListPageAsync
import com.increase.api.models.DigitalWalletTokenListParams
import com.increase.api.models.DigitalWalletTokenRetrieveParams
import java.util.concurrent.CompletableFuture
interface DigitalWalletTokenServiceAsync {
/** Retrieve a Digital Wallet Token */
@JvmOverloads
fun retrieve(
params: DigitalWalletTokenRetrieveParams,
requestOptions: RequestOptions = RequestOptions.none()
): CompletableFuture
/** List Digital Wallet Tokens */
@JvmOverloads
fun list(
params: DigitalWalletTokenListParams,
requestOptions: RequestOptions = RequestOptions.none()
): CompletableFuture
}