UNPKG

@ingestkorea/client-sens

Version:

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

46 lines (45 loc) 1.16 kB
import { TemplateButton } from "./SendAlimtalk.js"; export interface GetAlimtalkTemplateRequest { channelId: string; templateCode: string; } export interface GetAlimtalkTemplateResult { templates?: TemplateDetail[]; } export interface TemplateDetail { createTime?: string; updateTime?: string; channelId?: string; templateCode?: string; templateName?: string; categoryCode?: string; categoryName?: string; messageType?: string; emphasizeType?: string; content?: string; adContent?: string; extraContent?: string; title?: string; additionalTitle?: string; comments?: Comment[]; templateInspectionStatus?: string; templateStatus?: string; buttons?: TemplateButtonExtend[]; securityFlag?: boolean; isBlock?: boolean; isDormant?: boolean; } export interface Comment { commentId?: string; content?: string; status?: string; createTime?: string; attachment?: Attachment[]; } export interface Attachment { fileName?: string; fileUrl?: string; } export interface TemplateButtonExtend extends Partial<TemplateButton> { order?: number; }