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