
com.lithic.api.services.blocking.AccountService.kt Maven / Gradle / Ivy
// 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.blocking
import com.lithic.api.core.RequestOptions
import com.lithic.api.models.Account
import com.lithic.api.models.AccountListPage
import com.lithic.api.models.AccountListParams
import com.lithic.api.models.AccountRetrieveParams
import com.lithic.api.models.AccountUpdateParams
import com.lithic.api.services.blocking.accounts.CreditConfigurationService
interface AccountService {
fun creditConfigurations(): CreditConfigurationService
/** Get account configuration such as spend limits. */
fun retrieve(
params: AccountRetrieveParams,
requestOptions: RequestOptions = RequestOptions.none()
): Account
/**
* 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.
*/
fun update(
params: AccountUpdateParams,
requestOptions: RequestOptions = RequestOptions.none()
): Account
/** List account configurations. */
fun list(
params: AccountListParams,
requestOptions: RequestOptions = RequestOptions.none()
): AccountListPage
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy