UNPKG

@ingestkorea/client-sens

Version:

INGESTKOREA SDK Naver Cloud Platform SENS Client for Node.js.

24 lines (23 loc) 615 B
export type MessageType = "SMS" | "LMS" | "MMS"; export type MessageContentType = "COMM" | "AD"; export type CountryCode = "1" | "886" | "81" | "86" | "65" | "852" | "82"; export type SMSMessage = { to: string; subject?: string; content?: string; }; export interface SendSMSRequest { from: string; content: string; messages: SMSMessage[]; type?: MessageType; contentType?: MessageContentType; countryCode?: CountryCode; subject?: string; } export interface SendSMSResult { requestId?: string; requestTime?: string; statusCode?: string; statusName?: string; }