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