boldsign
Version:
NodeJS client for boldsign
19 lines (18 loc) • 503 B
TypeScript
import { GroupUser } from './groupUser';
export declare class GroupContact {
'groupName'?: string | null;
'groupId'?: string | null;
'contacts'?: Array<GroupUser> | null;
'directories'?: Array<string> | null;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}