Source code for bitmovin_api_sdk.models.broadcast_ts_muxing_configuration

# coding: utf-8

from enum import Enum
from six import string_types, iteritems
from bitmovin_api_sdk.common.poscheck import poscheck_model
from bitmovin_api_sdk.models.broadcast_ts_program_configuration import BroadcastTsProgramConfiguration
from bitmovin_api_sdk.models.broadcast_ts_transport_configuration import BroadcastTsTransportConfiguration
import pprint
import six


[docs]class BroadcastTsMuxingConfiguration(object): @poscheck_model def __init__(self, transport=None, program=None, video_streams=None, audio_streams=None, subtitle_streams=None): # type: (BroadcastTsTransportConfiguration, BroadcastTsProgramConfiguration, list[BroadcastTsVideoInputStreamConfiguration], list[BroadcastTsAudioInputStreamConfiguration], list[BroadcastTsSubtitleInputStreamConfiguration]) -> None self._transport = None self._program = None self._video_streams = list() self._audio_streams = list() self._subtitle_streams = list() self.discriminator = None if transport is not None: self.transport = transport if program is not None: self.program = program if video_streams is not None: self.video_streams = video_streams if audio_streams is not None: self.audio_streams = audio_streams if subtitle_streams is not None: self.subtitle_streams = subtitle_streams @property def openapi_types(self): types = { 'transport': 'BroadcastTsTransportConfiguration', 'program': 'BroadcastTsProgramConfiguration', 'video_streams': 'list[BroadcastTsVideoInputStreamConfiguration]', 'audio_streams': 'list[BroadcastTsAudioInputStreamConfiguration]', 'subtitle_streams': 'list[BroadcastTsSubtitleInputStreamConfiguration]' } return types @property def attribute_map(self): attributes = { 'transport': 'transport', 'program': 'program', 'video_streams': 'videoStreams', 'audio_streams': 'audioStreams', 'subtitle_streams': 'subtitleStreams' } return attributes @property def transport(self): # type: () -> BroadcastTsTransportConfiguration """Gets the transport of this BroadcastTsMuxingConfiguration. Transport configuration details for the Broadcast TS muxing. :return: The transport of this BroadcastTsMuxingConfiguration. :rtype: BroadcastTsTransportConfiguration """ return self._transport @transport.setter def transport(self, transport): # type: (BroadcastTsTransportConfiguration) -> None """Sets the transport of this BroadcastTsMuxingConfiguration. Transport configuration details for the Broadcast TS muxing. :param transport: The transport of this BroadcastTsMuxingConfiguration. :type: BroadcastTsTransportConfiguration """ if transport is not None: if not isinstance(transport, BroadcastTsTransportConfiguration): raise TypeError("Invalid type for `transport`, type has to be `BroadcastTsTransportConfiguration`") self._transport = transport @property def program(self): # type: () -> BroadcastTsProgramConfiguration """Gets the program of this BroadcastTsMuxingConfiguration. Program configuration details for the Broadcast TS muxing. :return: The program of this BroadcastTsMuxingConfiguration. :rtype: BroadcastTsProgramConfiguration """ return self._program @program.setter def program(self, program): # type: (BroadcastTsProgramConfiguration) -> None """Sets the program of this BroadcastTsMuxingConfiguration. Program configuration details for the Broadcast TS muxing. :param program: The program of this BroadcastTsMuxingConfiguration. :type: BroadcastTsProgramConfiguration """ if program is not None: if not isinstance(program, BroadcastTsProgramConfiguration): raise TypeError("Invalid type for `program`, type has to be `BroadcastTsProgramConfiguration`") self._program = program @property def video_streams(self): # type: () -> list[BroadcastTsVideoInputStreamConfiguration] """Gets the video_streams of this BroadcastTsMuxingConfiguration. :return: The video_streams of this BroadcastTsMuxingConfiguration. :rtype: list[BroadcastTsVideoInputStreamConfiguration] """ return self._video_streams @video_streams.setter def video_streams(self, video_streams): # type: (list) -> None """Sets the video_streams of this BroadcastTsMuxingConfiguration. :param video_streams: The video_streams of this BroadcastTsMuxingConfiguration. :type: list[BroadcastTsVideoInputStreamConfiguration] """ if video_streams is not None: if not isinstance(video_streams, list): raise TypeError("Invalid type for `video_streams`, type has to be `list[BroadcastTsVideoInputStreamConfiguration]`") self._video_streams = video_streams @property def audio_streams(self): # type: () -> list[BroadcastTsAudioInputStreamConfiguration] """Gets the audio_streams of this BroadcastTsMuxingConfiguration. :return: The audio_streams of this BroadcastTsMuxingConfiguration. :rtype: list[BroadcastTsAudioInputStreamConfiguration] """ return self._audio_streams @audio_streams.setter def audio_streams(self, audio_streams): # type: (list) -> None """Sets the audio_streams of this BroadcastTsMuxingConfiguration. :param audio_streams: The audio_streams of this BroadcastTsMuxingConfiguration. :type: list[BroadcastTsAudioInputStreamConfiguration] """ if audio_streams is not None: if not isinstance(audio_streams, list): raise TypeError("Invalid type for `audio_streams`, type has to be `list[BroadcastTsAudioInputStreamConfiguration]`") self._audio_streams = audio_streams @property def subtitle_streams(self): # type: () -> list[BroadcastTsSubtitleInputStreamConfiguration] """Gets the subtitle_streams of this BroadcastTsMuxingConfiguration. :return: The subtitle_streams of this BroadcastTsMuxingConfiguration. :rtype: list[BroadcastTsSubtitleInputStreamConfiguration] """ return self._subtitle_streams @subtitle_streams.setter def subtitle_streams(self, subtitle_streams): # type: (list) -> None """Sets the subtitle_streams of this BroadcastTsMuxingConfiguration. :param subtitle_streams: The subtitle_streams of this BroadcastTsMuxingConfiguration. :type: list[BroadcastTsSubtitleInputStreamConfiguration] """ if subtitle_streams is not None: if not isinstance(subtitle_streams, list): raise TypeError("Invalid type for `subtitle_streams`, type has to be `list[BroadcastTsSubtitleInputStreamConfiguration]`") self._subtitle_streams = subtitle_streams
[docs] def to_dict(self): """Returns the model properties as a dict""" result = {} for attr, _ in six.iteritems(self.openapi_types): value = getattr(self, attr) if value is None: continue if isinstance(value, list): if len(value) == 0: continue result[self.attribute_map.get(attr)] = [y.value if isinstance(y, Enum) else y for y in [x.to_dict() if hasattr(x, "to_dict") else x for x in value]] elif hasattr(value, "to_dict"): result[self.attribute_map.get(attr)] = value.to_dict() elif isinstance(value, Enum): result[self.attribute_map.get(attr)] = value.value elif isinstance(value, dict): result[self.attribute_map.get(attr)] = {k: (v.to_dict() if hasattr(v, "to_dict") else v) for (k, v) in value.items()} else: result[self.attribute_map.get(attr)] = value return result
[docs] def to_str(self): """Returns the string representation of the model""" return pprint.pformat(self.to_dict())
def __repr__(self): """For `print` and `pprint`""" return self.to_str() def __eq__(self, other): """Returns true if both objects are equal""" if not isinstance(other, BroadcastTsMuxingConfiguration): return False return self.__dict__ == other.__dict__ def __ne__(self, other): """Returns true if both objects are not equal""" return not self == other