UNPKG

xero-node

Version:

Xero NodeJS OAuth 2.0 client for xero-node

29 lines (28 loc) 723 B
import { CashBalance } from '././cashBalance'; import { CashflowActivity } from '././cashflowActivity'; export declare class CashflowResponse { /** * Start date of the report */ 'startDate'?: string; /** * End date of the report */ 'endDate'?: string; 'cashBalance'?: CashBalance; /** * Break down of cash and cash equivalents for the period */ 'cashflowActivities'?: Array<CashflowActivity>; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }