UNPKG

@idfy/sdk

Version:
18 lines (17 loc) 353 B
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'; }