// This file was auto-generated by Fern from our API Definition.

import type * as CoinbaseApi from "../../../../index.js";

/**
 * @example
 * ```ts
 * {
 *     accountId: "account_af2937b0-9846-4fe7-bfe9-ccc22d935114",
 *     asset: "usd"
 * }
 * ```
 */
export interface GetBalanceByAssetRequest {
    /** The unique identifier of the account. */
    accountId: CoinbaseApi.AccountId;
    /** The symbol of the asset. */
    asset: CoinbaseApi.Asset;
}
