import { ISMSCreateRequest } from '../Intellipush.types'; export default class SMS implements ISMSCreateRequest { message: string; countrycode: string; phonenumber: string; contactId?: string; contactlistId?: string; date?: string; time?: string; constructor(obj?: ISMSCreateRequest); setContactId(contactId: string): this; setContactlistId(contactListId: string): this; setCountrycode(countrycode: string): this; setDate(date: string): this; setMessage(message: string): this; setPhonenumber(phonenumber: string): this; setTime(time: string): this; }