Skip to content

transformations

Data transformations types modukle

Transformations

Class that enumerates the multiple data transformations types.

Source code in multimno/core/constants/transformations.py
 6
 7
 8
 9
10
11
12
13
14
15
class Transformations:
    """
    Class that enumerates the multiple data transformations types.
    """

    converted_timestamp = 1
    other_conversion = 2
    no_transformation = 9

    event_syntactic_cleaning_possible_transformations = [1, 2, 9]