MerchantManager

interface MerchantManager

Interface for accessing and modifying a Merchant and its associated data. All requests are returned in an ApiResult for safe-accessing of the data or the error.

Functions

Link copied to clipboard
abstract suspend fun get(merchantId: String): ApiResult<Merchant>

Retrieves the current Merchant configuration using the ID specified.

Link copied to clipboard
abstract suspend fun getBasisTheoryApiKey(merchantId: String): ApiResult<String>

Fetches the associated Basis Theory API key for the merchant of a given ID.

Link copied to clipboard
abstract suspend fun getVirtualCardArt(): ApiResult<List<String>>

Fetches any associated virtual card art.

Link copied to clipboard
abstract fun observe(merchantId: String): Flow<Merchant?>

Observes the Merchant associated by the ID specified.