boldsign
Version:
NodeJS client for boldsign
20 lines (19 loc) • 502 B
TypeScript
import { PhoneNumber } from './phoneNumber';
export declare class ContactDetails {
'email': string;
'name': string;
'phoneNumber'?: PhoneNumber;
'jobTitle'?: string | null;
'companyName'?: string | null;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}