@apideck/node
Version:
Apideck Node.js SDK
38 lines (32 loc) • 857 B
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* 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 function LedgerAccountsFromJSON(json: any): LedgerAccounts {
return LedgerAccountsFromJSONTyped(json, false)
}
export function LedgerAccountsFromJSONTyped(
json: any,
ignoreDiscriminator: boolean
): LedgerAccounts {
return json
}
export function LedgerAccountsToJSON(value?: LedgerAccounts | null): any {
return value
}