Source code for kappa_sdk.time_format_enum
from enum import Enum
[docs]
class TimeFormatEnum(Enum):
    """
    Time format Enum
    Defines how time data is formatted and interpreted in the system.
    """
    points = "Points"
    """
    Points data
    Represents data as individual points at specific timestamps.
    """
    time_at_start = "TimeAtStart"
    """
    Step data with step at start
    Represents data as steps where the timestamp marks the beginning of each step.
    """
    time_at_end = "TimeAtEnd"
    """
    Step data with step at end
    Represents data as steps where the timestamp marks the end of each step.
    """