xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
26 lines (25 loc) • 531 B
TypeScript
export declare class ProjectUser {
/**
* Identifier of the user of the project.
*/
'userId'?: string;
/**
* Full name of the user.
*/
'name'?: string;
/**
* Email address of the user.
*/
'email'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}