boldsign
Version:
NodeJS client for boldsign
47 lines (46 loc) • 971 B
TypeScript
import { NotificationSettings } from './notificationSettings';
export declare class EditSenderIdentityRequest {
'name'?: string | null;
'notificationSettings'?: NotificationSettings;
'redirectUrl'?: string | null;
'metaData'?: {
[key: string]: string | null;
} | null;
'locale'?: EditSenderIdentityRequest.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 EditSenderIdentityRequest {
enum LocaleEnum {
En,
No,
Fr,
De,
Es,
Bg,
Cs,
Da,
It,
Nl,
Pl,
Pt,
Ro,
Ru,
Sv,
Default,
Ja,
Th,
ZhCn,
ZhTw,
Ko
}
}