com.lithic.api.services.async.AccountServiceAsync.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lithic-java-core Show documentation
Show all versions of lithic-java-core Show documentation
The Lithic Developer API is designed to provide a predictable programmatic
interface for accessing your Lithic account through an API and transaction
webhooks. Note that your API key is a secret and should be treated as such.
Don't share it with anyone, including us. We will never ask you for it.
// File generated from our OpenAPI spec by Stainless.
@file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102
package com.lithic.api.services.async
import com.lithic.api.core.RequestOptions
import com.lithic.api.models.Account
import com.lithic.api.models.AccountListPageAsync
import com.lithic.api.models.AccountListParams
import com.lithic.api.models.AccountRetrieveParams
import com.lithic.api.models.AccountRetrieveSpendLimitsParams
import com.lithic.api.models.AccountSpendLimits
import com.lithic.api.models.AccountUpdateParams
import java.util.concurrent.CompletableFuture
interface AccountServiceAsync {
/** Get account configuration such as spend limits. */
@JvmOverloads
fun retrieve(
params: AccountRetrieveParams,
requestOptions: RequestOptions = RequestOptions.none()
): CompletableFuture
/**
* Update account configuration such as spend limits and verification address. Can only be run
* on accounts that are part of the program managed by this API key.
*
* Accounts that are in the `PAUSED` state will not be able to transact or create new cards.
*/
@JvmOverloads
fun update(
params: AccountUpdateParams,
requestOptions: RequestOptions = RequestOptions.none()
): CompletableFuture
/** List account configurations. */
@JvmOverloads
fun list(
params: AccountListParams,
requestOptions: RequestOptions = RequestOptions.none()
): CompletableFuture
/**
* Get an Account's available spend limits, which is based on the spend limit configured on the
* Account and the amount already spent over the spend limit's duration. For example, if the
* Account has a daily spend limit of $1000 configured, and has spent $600 in the last 24 hours,
* the available spend limit returned would be $400.
*/
@JvmOverloads
fun retrieveSpendLimits(
params: AccountRetrieveSpendLimitsParams,
requestOptions: RequestOptions = RequestOptions.none()
): CompletableFuture
}