/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { accountingBalanceSheetGet } from "../funcs/accountingBalanceSheetGet.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; import { unwrapAsync } from "../types/fp.js"; export class BalanceSheet extends ClientSDK { /** * Get BalanceSheet * * @remarks * Get BalanceSheet */ async get( request: operations.AccountingBalanceSheetOneRequest, options?: RequestOptions, ): Promise { return unwrapAsync(accountingBalanceSheetGet( this, request, options, )); } }