boldsign
Version:
NodeJS client for boldsign
21 lines (20 loc) • 578 B
TypeScript
import { Creators } from './creators';
import { GroupUser } from './groupUser';
export declare class GetGroupContactDetails {
'groupName'?: string | null;
'groupId'?: string | null;
'contacts'?: Array<GroupUser> | null;
'creator'?: Creators;
'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;
}[];
}