UNPKG

xero-node

Version:

Xero NodeJS OAuth 2.0 client for xero-node

28 lines (27 loc) 671 B
import { AccountUsage } from '././accountUsage'; export declare class AccountUsageResponse { /** * The requested Organisation to which the data pertains */ 'organisationId'?: string; /** * The start month of the report */ 'startMonth'?: string; /** * The end month of the report */ 'endMonth'?: string; 'accountUsage'?: Array<AccountUsage>; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }