Source code for bitmovin_api_sdk.models.live_encoding_event_name

# coding: utf-8

from enum import Enum
from six import string_types, iteritems
from bitmovin_api_sdk.common.poscheck import poscheck_model


[docs]class LiveEncodingEventName(Enum): FIRST_CONNECT = "FIRST_CONNECT" DISCONNECT = "DISCONNECT" RECONNECT = "RECONNECT" RESYNCING = "RESYNCING" IDLE = "IDLE" ERROR = "ERROR"