com.increase.api.services.async.RoutingNumberServiceAsync.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.RoutingNumberListPageAsync
import com.increase.api.models.RoutingNumberListParams
import java.util.concurrent.CompletableFuture
interface RoutingNumberServiceAsync {
/**
* You can use this API to confirm if a routing number is valid, such as when a user is
* providing you with bank account details. Since routing numbers uniquely identify a bank, this
* will always return 0 or 1 entry. In Sandbox, the only valid routing number for this method
* is 110000000.
*/
@JvmOverloads
fun list(
params: RoutingNumberListParams,
requestOptions: RequestOptions = RequestOptions.none()
): CompletableFuture
}