cloud-ide-lms-model
Version:
Package for Model management of Cloud IDEsys LMS
30 lines (29 loc) • 995 B
TypeScript
declare class ICoreWorkflowRegistry {
_id?: string;
wfrg_workflow_code?: string;
wfrg_title?: string;
wfrg_desc?: string;
wfrg_category_id_sygms?: string;
wfrg_entity_id_syen?: string;
wfrg_page_id_sypg?: string;
wfrg_menu_id_syme?: string;
wfrg_component_selector?: string;
wfrg_component_path?: string;
wfrg_query_params?: Record<string, any>;
wfrg_view_mode_id_sygms?: string;
wfrg_trigger_type_id_sygms?: string;
wfrg_trigger_condition?: string;
wfrg_auto_initialize?: boolean;
wfrg_isactive?: boolean;
wfrg_valid_from_date?: Date;
wfrg_valid_to_date?: Date;
wfrg_reinitialize_on_edit?: boolean;
wfrg_notify_approvers_on_final_status?: boolean;
wfrg_show_approver_names?: boolean;
wfrg_mask_approver_info?: boolean;
wfrg_target_status_field?: string;
wfrg_initial_status?: string;
wfrg_final_status?: string;
wfrg_configuration?: Record<string, any>;
}
export { ICoreWorkflowRegistry };