Source code for kappa_sdk.service_enum

from enum import Enum


[docs] class ServiceEnum(Enum): """ Represents various service categories in a system using enumeration. This class provides an enumeration of service categories to be used in the system. Each enumeration member represents a specific service type, making it easier to categorize, identify, and operate on different service-related functionalities in a structured and type-safe manner. """ field = "field" data = "data" filtering = "filtering" kwaas = "kwaas" automation = "automation" processing = "processing" external_data = "externaldata" techobjects = "techobjects" pta = "ptainteractive" rta = "rtainteractive" num = "numinteractive"