xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
23 lines (22 loc) • 623 B
TypeScript
import { Pagination } from '././pagination';
import { Payment } from '././payment';
import { ValidationError } from '././validationError';
export declare class Payments {
'pagination'?: Pagination;
/**
* Displays array of warning messages from the API
*/
'warnings'?: Array<ValidationError>;
'payments'?: Array<Payment>;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}