UNPKG

xero-node

Version:

Xero NodeJS OAuth 2.0 client for xero-node

23 lines (22 loc) 638 B
import { Pagination } from '././pagination'; import { Prepayment } from '././prepayment'; import { ValidationError } from '././validationError'; export declare class Prepayments { 'pagination'?: Pagination; /** * Displays array of warning messages from the API */ 'warnings'?: Array<ValidationError>; 'prepayments'?: Array<Prepayment>; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }