UNPKG

@apideck/node

Version:
23 lines (22 loc) 764 B
/** * Apideck * The Apideck OpenAPI Spec: SDK Optimized * * The version of the OpenAPI document: 10.13.0 * Contact: support@apideck.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { LedgerAccount } from './LedgerAccount'; /** * * @export * @interface LedgerAccounts */ export interface LedgerAccounts extends Array<LedgerAccount> { } export declare function LedgerAccountsFromJSON(json: any): LedgerAccounts; export declare function LedgerAccountsFromJSONTyped(json: any, ignoreDiscriminator: boolean): LedgerAccounts; export declare function LedgerAccountsToJSON(value?: LedgerAccounts | null): any;