{
    /* If set to 1, command to sort users is shown on folder "Imported from Microsoft Entra ID*/
    SHOW_USERS_COMMAND: 1,
    /* If set to 1, command to sort devices is shown on folder "Imported objects" */
    SHOW_DEVICES_COMMAND: 1,

    /* If set to 1, sorts existing objects in the original structure */
    SORT_EXISTING_USERS: 1,
    SORT_EXISTING_DEVICES: 0,

    /* Main folders from where loaded users and devices will be sorted */
    IMPORTED_USERS_FOLDER: "Imported from Microsoft Entra ID",
    IMPORTED_OBJECTS_FOLDER: "Imported objects",

    /* Two sorting cycles. Typically sorts users (1 cycle) in the organization and then devices under the users (2 cycle). */

    /* Sort users "SOURCE_CLASS" according to their property "SOURCE_PROPERTY" into objects of type "DESTINATION_CLASS" according to their property "DESTINATION_PROPERTY" */
    SOURCE_CLASS: "User",
    SOURCE_PROPERTY: "Department",
    DESTINATION_CLASS: "Department",
    DESTINATION_PROPERTY: "Department",

    /* Sort devices according to their property "SOURCE_PROPERTY_2" under users of type "DESTINATION_CLASS_2" according to their property "DESTINATION_PROPERTY_2"
       Device is moved under object of type "User" where the devices property "User (UPN)" matches target's property "User name" */
    SOURCE_PROPERTY_2: "User (UPN)",
    DESTINATION_CLASS_2: "User",
    DESTINATION_PROPERTY_2: "User name",
    /* Here we do not specify SOURCE_CLASS, because we want to sort all devices that contain the required property "SOURCE_PROPERTY_2" */

    /* Determines the type (class) of object in the tree in which the main organizational structure is (will be) created */
    MAIN_STRUCTURE_OBJECT_CLASS: "Organization"
}