solapi
    Preparing search index...
    interface GetKakaoAlimtalkTemplatesFinalizeResponse {
        limit: number;
        nextKey: string | null;
        startKey: string;
        templateList: {
            ad?: string | null;
            assignType?: "CHANNEL" | "GROUP";
            buttons?: readonly (
                | {
                    buttonName: string;
                    buttonType: "WL";
                    linkMo: string;
                    linkPc?: string
                    | null;
                }
                | {
                    buttonName: string;
                    buttonType: "AL";
                    linkAnd: string;
                    linkIos: string;
                }
                | {
                    buttonName: string;
                    buttonType: "BK"
                    | "MD"
                    | "DS"
                    | "BC"
                    | "BT"
                    | "AC";
                }
            )[];
            channelGroupId?: string
            | null;
            channelId?: string | null;
            code?: string | null;
            commentable?: boolean;
            comments?: readonly {
                content: string | null;
                dateCreated: string;
                isAdmin: boolean;
                memberId: string;
            }[];
            content?: string;
            dateCreated?: Date;
            dateUpdated?: Date;
            emphasizeSubtitle?: string
            | null;
            emphasizeTitle?: string | null;
            emphasizeType: "NONE" | "TEXT" | "IMAGE" | "ITEM_LIST";
            extra?: string | null;
            header?: string | null;
            highlight?:
                | {
                    description?: string
                    | null;
                    imageId?: string | null;
                    title?: string | null;
                }
                | null;
            imageId?: string
            | null;
            isHidden?: boolean;
            item?:
                | {
                    list: readonly { description: string; title: string }[];
                    summary: { description?: string | null; title?: string | null };
                }
                | null;
            messageType: "BA"
            | "EX"
            | "AD"
            | "MI";
            name: string;
            quickReplies?: readonly (
                | { linkMo: string; linkPc?: string; linkType: "WL"; name: string }
                | { linkAnd: string; linkIos: string; linkType: "AL"; name: string }
                | { linkType: "BK" | "BC" | "BT"; name: string }
            )[];
            securityFlag: boolean;
            status: "PENDING" | "INSPECTING" | "APPROVED" | "REJECTED";
            templateId: string;
            variables?: readonly { name: string }[];
        }[];
    }
    Index

    Properties

    limit: number
    nextKey: string | null
    startKey: string
    templateList: {
        ad?: string | null;
        assignType?: "CHANNEL" | "GROUP";
        buttons?: readonly (
            | {
                buttonName: string;
                buttonType: "WL";
                linkMo: string;
                linkPc?: string
                | null;
            }
            | {
                buttonName: string;
                buttonType: "AL";
                linkAnd: string;
                linkIos: string;
            }
            | {
                buttonName: string;
                buttonType: "BK"
                | "MD"
                | "DS"
                | "BC"
                | "BT"
                | "AC";
            }
        )[];
        channelGroupId?: string
        | null;
        channelId?: string | null;
        code?: string | null;
        commentable?: boolean;
        comments?: readonly {
            content: string | null;
            dateCreated: string;
            isAdmin: boolean;
            memberId: string;
        }[];
        content?: string;
        dateCreated?: Date;
        dateUpdated?: Date;
        emphasizeSubtitle?: string
        | null;
        emphasizeTitle?: string | null;
        emphasizeType: "NONE" | "TEXT" | "IMAGE" | "ITEM_LIST";
        extra?: string | null;
        header?: string | null;
        highlight?:
            | {
                description?: string
                | null;
                imageId?: string | null;
                title?: string | null;
            }
            | null;
        imageId?: string
        | null;
        isHidden?: boolean;
        item?:
            | {
                list: readonly { description: string; title: string }[];
                summary: { description?: string | null; title?: string | null };
            }
            | null;
        messageType: "BA"
        | "EX"
        | "AD"
        | "MI";
        name: string;
        quickReplies?: readonly (
            | { linkMo: string; linkPc?: string; linkType: "WL"; name: string }
            | { linkAnd: string; linkIos: string; linkType: "AL"; name: string }
            | { linkType: "BK" | "BC" | "BT"; name: string }
        )[];
        securityFlag: boolean;
        status: "PENDING" | "INSPECTING" | "APPROVED" | "REJECTED";
        templateId: string;
        variables?: readonly { name: string }[];
    }[]