xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
27 lines (26 loc) • 627 B
TypeScript
import { TrialBalanceAccount } from '././trialBalanceAccount';
export declare class TrialBalanceResponse {
/**
* Start date of the report
*/
'startDate'?: string;
/**
* End date of the report
*/
'endDate'?: string;
/**
* Refer to the accounts section below
*/
'accounts'?: Array<TrialBalanceAccount>;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}