@idfy/sdk
Version:
Node.js SDK for Idfy REST API
22 lines (21 loc) • 471 B
TypeScript
export interface Email {
/**
* The language of the email notification.
*/
language: Email.LanguageEnum;
/**
* The email subject.
*/
subject?: string;
/**
* The email notification body. Plain text and markdown is supported.
*/
text?: string;
/**
* The name to use as email sender.
*/
senderName?: string;
}
export declare namespace Email {
type LanguageEnum = 'EN' | 'NO' | 'DA' | 'SV' | 'FI';
}