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

    Type Alias RequestType

    type RequestType = {
        createRequestType(
            typeData: RequestTypeSkeleton,
        ): Promise<RequestTypeSkeleton>;
        deleteRequestType(typeId: string): Promise<RequestTypeSkeleton>;
        deleteRequestTypeByName(typeName: string): Promise<RequestTypeSkeleton>;
        deleteRequestTypes(
            resultCallback?: ResultCallback<RequestTypeSkeleton>,
        ): Promise<RequestTypeSkeleton[]>;
        exportRequestType(
            typeId: string,
            options?: RequestTypeExportOptions,
        ): Promise<RequestTypeExportInterface>;
        exportRequestTypeByName(
            typeName: string,
            options?: RequestTypeExportOptions,
        ): Promise<RequestTypeExportInterface>;
        exportRequestTypes(
            options?: RequestTypeExportOptions,
        ): Promise<RequestTypeExportInterface>;
        importRequestTypes(
            importData: RequestTypeExportInterface,
            typeId?: string,
            typeName?: string,
            options?: RequestTypeImportOptions,
            resultCallback?: ResultCallback<RequestTypeSkeleton>,
        ): Promise<RequestTypeSkeleton[]>;
        readRequestType(typeId: string): Promise<RequestTypeSkeleton>;
        readRequestTypeByName(typeName: string): Promise<RequestTypeSkeleton>;
        readRequestTypes(): Promise<RequestTypeSkeleton[]>;
        updateRequestType(
            typeId: string,
            typeData: RequestTypeSkeleton,
        ): Promise<RequestTypeSkeleton>;
    }
    Index

    Methods