/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { accountBalance } from "../funcs/account-balance.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as models from "../models/index.js"; import { unwrapAsync } from "../types/fp.js"; export class Account extends ClientSDK { /** * Get Balance * * @remarks * Get Balance */ async balance( options?: RequestOptions, ): Promise { return unwrapAsync(accountBalance( this, options, )); } }