solapi
    Preparing search index...
    interface GetKakaoAlimtalkTemplatesFinalizeResponse {
        limit: number;
        nextKey: null | string;
        startKey: string;
        templateList: {
            ad?: null | string;
            assignType?: "CHANNEL" | "GROUP";
            buttons?: readonly (
                | {
                    buttonName: string;
                    buttonType: "WL";
                    linkMo: string;
                    linkPc?: string;
                }
                | {
                    buttonName: string;
                    buttonType: "AL";
                    linkAnd: string;
                    linkIos: string;
                }
                | {
                    buttonName: string;
                    buttonType: "BK"
                    | "MD"
                    | "DS"
                    | "BC"
                    | "BT"
                    | "AC";
                }
            )[];
            channelGroupId?: null
            | string;
            channelId?: null | string;
            code?: string;
            commentable?: boolean;
            comments?: readonly {
                content: null | string;
                dateCreated: string;
                isAdmin: boolean;
                memberId: string;
            }[];
            content?: string;
            dateCreated?: Date;
            dateUpdated?: Date;
            emphasizeSubtitle?: null
            | string;
            emphasizeTitle?: null | string;
            emphasizeType: "NONE" | "TEXT" | "IMAGE" | "ITEM_LIST";
            extra?: null | string;
            header?: null | string;
            highlight?:
                | null
                | {
                    description?: null
                    | string;
                    imageId?: null | string;
                    title?: null | string;
                };
            imageId?: null
            | string;
            isHidden?: boolean;
            item?:
                | null
                | {
                    list: readonly { description: string; title: string }[];
                    summary: { description?: null | string; title?: null | string };
                };
            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: null | string
    startKey: string
    templateList: {
        ad?: null | string;
        assignType?: "CHANNEL" | "GROUP";
        buttons?: readonly (
            | {
                buttonName: string;
                buttonType: "WL";
                linkMo: string;
                linkPc?: string;
            }
            | {
                buttonName: string;
                buttonType: "AL";
                linkAnd: string;
                linkIos: string;
            }
            | {
                buttonName: string;
                buttonType: "BK"
                | "MD"
                | "DS"
                | "BC"
                | "BT"
                | "AC";
            }
        )[];
        channelGroupId?: null
        | string;
        channelId?: null | string;
        code?: string;
        commentable?: boolean;
        comments?: readonly {
            content: null | string;
            dateCreated: string;
            isAdmin: boolean;
            memberId: string;
        }[];
        content?: string;
        dateCreated?: Date;
        dateUpdated?: Date;
        emphasizeSubtitle?: null
        | string;
        emphasizeTitle?: null | string;
        emphasizeType: "NONE" | "TEXT" | "IMAGE" | "ITEM_LIST";
        extra?: null | string;
        header?: null | string;
        highlight?:
            | null
            | {
                description?: null
                | string;
                imageId?: null | string;
                title?: null | string;
            };
        imageId?: null
        | string;
        isHidden?: boolean;
        item?:
            | null
            | {
                list: readonly { description: string; title: string }[];
                summary: { description?: null | string; title?: null | string };
            };
        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 }[];
    }[]