UNPKG

boldsign

Version:

NodeJS client for boldsign

49 lines (48 loc) 1.03 kB
import { NotificationSettings } from './notificationSettings'; export declare class CreateSenderIdentityRequest { 'email': string; 'name'?: string | null; 'notificationSettings'?: NotificationSettings; 'brandId'?: string | null; 'redirectUrl'?: string | null; 'metaData'?: { [key: string]: string | null; } | null; 'locale'?: CreateSenderIdentityRequest.LocaleEnum; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace CreateSenderIdentityRequest { enum LocaleEnum { En, No, Fr, De, Es, Bg, Cs, Da, It, Nl, Pl, Pt, Ro, Ru, Sv, Default, Ja, Th, ZhCn, ZhTw, Ko } }