Frodo Library - v4.0.0-24
    Preparing search index...

    Type Alias CertificationTemplate

    type CertificationTemplate = {
        createCertificationTemplate(
            templateData: CertificationTemplateSkeleton,
        ): Promise<CertificationTemplateSkeleton>;
        deleteCertificationTemplate(
            templateId: string,
        ): Promise<CertificationTemplateDeleteSkeleton>;
        deleteCertificationTemplateByName(
            templateName: string,
        ): Promise<CertificationTemplateDeleteSkeleton>;
        deleteCertificationTemplates(
            resultCallback?: ResultCallback<CertificationTemplateDeleteSkeleton>,
        ): Promise<CertificationTemplateDeleteSkeleton[]>;
        exportCertificationTemplate(
            templateId: string,
            options?: CertificationTemplateExportOptions,
        ): Promise<CertificationTemplateExportInterface>;
        exportCertificationTemplateByName(
            templateName: string,
            options?: CertificationTemplateExportOptions,
        ): Promise<CertificationTemplateExportInterface>;
        exportCertificationTemplates(
            options?: CertificationTemplateExportOptions,
            resultCallback?: ResultCallback<CertificationTemplateExportInterface>,
        ): Promise<CertificationTemplateExportInterface>;
        importCertificationTemplates(
            importData: CertificationTemplateExportInterface,
            templateId?: string,
            templateName?: string,
            options?: CertificationTemplateImportOptions,
            resultCallback?: ResultCallback<CertificationTemplateSkeleton>,
        ): Promise<CertificationTemplateSkeleton[]>;
        readCertificationTemplate(
            templateId: string,
        ): Promise<CertificationTemplateSkeleton>;
        readCertificationTemplateByName(
            templateName: string,
        ): Promise<CertificationTemplateSkeleton>;
        readCertificationTemplates(): Promise<CertificationTemplateSkeleton[]>;
        updateCertificationTemplate(
            templateId: string,
            templateData: CertificationTemplateSkeleton,
        ): Promise<CertificationTemplateSkeleton>;
    }
    Index

    Methods