com.increase.api.services.async.OAuthTokenServiceAsync.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.OAuthToken
import com.increase.api.models.OAuthTokenCreateParams
import java.util.concurrent.CompletableFuture
interface OAuthTokenServiceAsync {
/** Create an OAuth Token */
@JvmOverloads
fun create(
params: OAuthTokenCreateParams,
requestOptions: RequestOptions = RequestOptions.none()
): CompletableFuture
}