@chelseaapps/notification documentation
File
src/sms/sms.interface.ts
Index
Properties
to
to: string[]
Type : string[]
List of phone numbers
export interface ISMSPayload {
/**
* List of phone numbers
*/
to: string[];
/**
* Text messsage
*/
message: string;
}Was this helpful?