boldsign
Version:
NodeJS client for boldsign
27 lines (26 loc) • 676 B
TypeScript
export declare class UsersDetails {
'userId'?: string;
'email'?: string | null;
'firstName'?: string | null;
'lastName'?: string | null;
'teamId'?: string;
'teamName'?: string | null;
'role'?: string | null;
'userStatus'?: string | null;
'createdDate'?: number;
'modifiedDate'?: number;
'metaData'?: {
[key: string]: string | null;
} | null;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}