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