/** * Accounting API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2.0.4 * Contact: api@xero.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 { ReportFields } from './reportFields'; import { ReportRows } from './reportRows'; export declare class ReportWithRow { /** * Report id */ 'reportID'?: string; /** * Name of the report */ 'reportName'?: string; /** * Title of the report */ 'reportTitle'?: string; /** * The type of report (BalanceSheet,ProfitLoss, etc) */ 'reportType'?: string; /** * Report titles array (3 to 4 strings with the report name, orgnisation name and time frame of report) */ 'reportTitles'?: Array; /** * Date of report */ 'reportDate'?: string; 'rows'?: Array; /** * Updated Date */ 'updatedDateUTC'?: Date; 'fields'?: Array; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }