xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
22 lines (21 loc) • 494 B
TypeScript
import { UsageRecord } from '././usageRecord';
/**
* Response to get usage record
*/
export declare class UsageRecordsList {
/**
* A collection of usage records
*/
'usageRecords': Array<UsageRecord>;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}