kappa_sdk.TimeFormatEnum#

class kappa_sdk.TimeFormatEnum(value, names=<not given>, *values, module=None, qualname=None, type=None, start=1, boundary=None)[source]#

Time format Enum

Defines how time data is formatted and interpreted in the system.

Attributes

TimeFormatEnum.points

Points data

TimeFormatEnum.time_at_start

Step data with step at start

TimeFormatEnum.time_at_end

Step data with step at end

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.