UNPKG

@apideck/node

Version:
24 lines (23 loc) 917 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 { ProfitAndLossRecord } from './ProfitAndLossRecord'; import { ProfitAndLossSection } from './ProfitAndLossSection'; /** * * @export * @interface ProfitAndLossRecords */ export interface ProfitAndLossRecords extends Array<ProfitAndLossSection | ProfitAndLossRecord> { } export declare function ProfitAndLossRecordsFromJSON(json: any): ProfitAndLossRecords; export declare function ProfitAndLossRecordsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProfitAndLossRecords; export declare function ProfitAndLossRecordsToJSON(value?: ProfitAndLossRecords | null): any;