@idfy/sdk
Version:
Node.js SDK for Idfy REST API
18 lines (17 loc) • 353 B
TypeScript
export interface SMS {
/**
* The language of the SMS notification.
*/
language: SMS.LanguageEnum;
/**
* The SMS notification text.
*/
text?: string;
/**
* The name to use as SMS sender.
*/
sender?: string;
}
export declare namespace SMS {
type LanguageEnum = 'EN' | 'NO' | 'DA' | 'SV' | 'FI';
}