boldsign
Version:
NodeJS client for boldsign
28 lines (27 loc) • 788 B
TypeScript
import { NotificationSettings } from './notificationSettings';
export declare class SenderIdentityViewModel {
'id'?: string | null;
'name'?: string | null;
'email'?: string | null;
'status'?: string | null;
'createdBy'?: string | null;
'approvedDate'?: string | null;
'notificationSettings'?: NotificationSettings;
'brandId'?: string | null;
'redirectUrl'?: string | null;
'metaData'?: {
[key: string]: string | null;
} | null;
'locale'?: string | null;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}