# coding: utf-8
from enum import Enum
from datetime import date
from six import string_types, iteritems
from bitmovin_api_sdk.common.poscheck import poscheck_model
import pprint
import six
[docs]class EncodingStats(object):
@poscheck_model
def __init__(self,
date_=None,
encoding_id=None,
bytes_encoded=None,
time_encoded=None,
downloaded_size=None,
billable_minutes=None,
billable_egress_bytes=None,
billable_encoding_minutes=None,
billable_transmuxing_minutes=None,
billable_feature_minutes=None,
streams=None,
muxings=None,
features=None):
# type: (date, string_types, int, int, int, float, list[EgressInformation], list[BillableEncodingMinutes], float, float, list[StatisticsPerStream], list[StatisticsPerMuxing], list[BillableEncodingFeatureMinutes]) -> None
self._date = None
self._encoding_id = None
self._bytes_encoded = None
self._time_encoded = None
self._downloaded_size = None
self._billable_minutes = None
self._billable_egress_bytes = list()
self._billable_encoding_minutes = list()
self._billable_transmuxing_minutes = None
self._billable_feature_minutes = None
self._streams = list()
self._muxings = list()
self._features = list()
self.discriminator = None
if date_ is not None:
self.date = date_
if encoding_id is not None:
self.encoding_id = encoding_id
if bytes_encoded is not None:
self.bytes_encoded = bytes_encoded
if time_encoded is not None:
self.time_encoded = time_encoded
if downloaded_size is not None:
self.downloaded_size = downloaded_size
if billable_minutes is not None:
self.billable_minutes = billable_minutes
if billable_egress_bytes is not None:
self.billable_egress_bytes = billable_egress_bytes
if billable_encoding_minutes is not None:
self.billable_encoding_minutes = billable_encoding_minutes
if billable_transmuxing_minutes is not None:
self.billable_transmuxing_minutes = billable_transmuxing_minutes
if billable_feature_minutes is not None:
self.billable_feature_minutes = billable_feature_minutes
if streams is not None:
self.streams = streams
if muxings is not None:
self.muxings = muxings
if features is not None:
self.features = features
@property
def openapi_types(self):
types = {
'date': 'date',
'encoding_id': 'string_types',
'bytes_encoded': 'int',
'time_encoded': 'int',
'downloaded_size': 'int',
'billable_minutes': 'float',
'billable_egress_bytes': 'list[EgressInformation]',
'billable_encoding_minutes': 'list[BillableEncodingMinutes]',
'billable_transmuxing_minutes': 'float',
'billable_feature_minutes': 'float',
'streams': 'list[StatisticsPerStream]',
'muxings': 'list[StatisticsPerMuxing]',
'features': 'list[BillableEncodingFeatureMinutes]'
}
return types
@property
def attribute_map(self):
attributes = {
'date': 'date',
'encoding_id': 'encodingId',
'bytes_encoded': 'bytesEncoded',
'time_encoded': 'timeEncoded',
'downloaded_size': 'downloadedSize',
'billable_minutes': 'billableMinutes',
'billable_egress_bytes': 'billableEgressBytes',
'billable_encoding_minutes': 'billableEncodingMinutes',
'billable_transmuxing_minutes': 'billableTransmuxingMinutes',
'billable_feature_minutes': 'billableFeatureMinutes',
'streams': 'streams',
'muxings': 'muxings',
'features': 'features'
}
return attributes
@property
def date(self):
# type: () -> date
"""Gets the date of this EncodingStats.
Date, format. yyyy-MM-dd
:return: The date of this EncodingStats.
:rtype: date
"""
return self._date
@date.setter
def date(self, date_):
# type: (date) -> None
"""Sets the date of this EncodingStats.
Date, format. yyyy-MM-dd
:param date_: The date of this EncodingStats.
:type: date
"""
if date_ is not None:
if not isinstance(date_, date):
raise TypeError("Invalid type for `date`, type has to be `date`")
self._date = date_
@property
def encoding_id(self):
# type: () -> string_types
"""Gets the encoding_id of this EncodingStats.
The id of the encoding (required)
:return: The encoding_id of this EncodingStats.
:rtype: string_types
"""
return self._encoding_id
@encoding_id.setter
def encoding_id(self, encoding_id):
# type: (string_types) -> None
"""Sets the encoding_id of this EncodingStats.
The id of the encoding (required)
:param encoding_id: The encoding_id of this EncodingStats.
:type: string_types
"""
if encoding_id is not None:
if not isinstance(encoding_id, string_types):
raise TypeError("Invalid type for `encoding_id`, type has to be `string_types`")
self._encoding_id = encoding_id
@property
def bytes_encoded(self):
# type: () -> int
"""Gets the bytes_encoded of this EncodingStats.
Total bytes encoded
:return: The bytes_encoded of this EncodingStats.
:rtype: int
"""
return self._bytes_encoded
@bytes_encoded.setter
def bytes_encoded(self, bytes_encoded):
# type: (int) -> None
"""Sets the bytes_encoded of this EncodingStats.
Total bytes encoded
:param bytes_encoded: The bytes_encoded of this EncodingStats.
:type: int
"""
if bytes_encoded is not None:
if not isinstance(bytes_encoded, int):
raise TypeError("Invalid type for `bytes_encoded`, type has to be `int`")
self._bytes_encoded = bytes_encoded
@property
def time_encoded(self):
# type: () -> int
"""Gets the time_encoded of this EncodingStats.
Total time encoded
:return: The time_encoded of this EncodingStats.
:rtype: int
"""
return self._time_encoded
@time_encoded.setter
def time_encoded(self, time_encoded):
# type: (int) -> None
"""Sets the time_encoded of this EncodingStats.
Total time encoded
:param time_encoded: The time_encoded of this EncodingStats.
:type: int
"""
if time_encoded is not None:
if not isinstance(time_encoded, int):
raise TypeError("Invalid type for `time_encoded`, type has to be `int`")
self._time_encoded = time_encoded
@property
def downloaded_size(self):
# type: () -> int
"""Gets the downloaded_size of this EncodingStats.
Downloaded size of the input file
:return: The downloaded_size of this EncodingStats.
:rtype: int
"""
return self._downloaded_size
@downloaded_size.setter
def downloaded_size(self, downloaded_size):
# type: (int) -> None
"""Sets the downloaded_size of this EncodingStats.
Downloaded size of the input file
:param downloaded_size: The downloaded_size of this EncodingStats.
:type: int
"""
if downloaded_size is not None:
if not isinstance(downloaded_size, int):
raise TypeError("Invalid type for `downloaded_size`, type has to be `int`")
self._downloaded_size = downloaded_size
@property
def billable_minutes(self):
# type: () -> float
"""Gets the billable_minutes of this EncodingStats.
Billable minutes
:return: The billable_minutes of this EncodingStats.
:rtype: float
"""
return self._billable_minutes
@billable_minutes.setter
def billable_minutes(self, billable_minutes):
# type: (float) -> None
"""Sets the billable_minutes of this EncodingStats.
Billable minutes
:param billable_minutes: The billable_minutes of this EncodingStats.
:type: float
"""
if billable_minutes is not None:
if not isinstance(billable_minutes, (float, int)):
raise TypeError("Invalid type for `billable_minutes`, type has to be `float`")
self._billable_minutes = billable_minutes
@property
def billable_egress_bytes(self):
# type: () -> list[EgressInformation]
"""Gets the billable_egress_bytes of this EncodingStats.
Billable egress output
:return: The billable_egress_bytes of this EncodingStats.
:rtype: list[EgressInformation]
"""
return self._billable_egress_bytes
@billable_egress_bytes.setter
def billable_egress_bytes(self, billable_egress_bytes):
# type: (list) -> None
"""Sets the billable_egress_bytes of this EncodingStats.
Billable egress output
:param billable_egress_bytes: The billable_egress_bytes of this EncodingStats.
:type: list[EgressInformation]
"""
if billable_egress_bytes is not None:
if not isinstance(billable_egress_bytes, list):
raise TypeError("Invalid type for `billable_egress_bytes`, type has to be `list[EgressInformation]`")
self._billable_egress_bytes = billable_egress_bytes
@property
def billable_encoding_minutes(self):
# type: () -> list[BillableEncodingMinutes]
"""Gets the billable_encoding_minutes of this EncodingStats.
Detailed statistics per stream
:return: The billable_encoding_minutes of this EncodingStats.
:rtype: list[BillableEncodingMinutes]
"""
return self._billable_encoding_minutes
@billable_encoding_minutes.setter
def billable_encoding_minutes(self, billable_encoding_minutes):
# type: (list) -> None
"""Sets the billable_encoding_minutes of this EncodingStats.
Detailed statistics per stream
:param billable_encoding_minutes: The billable_encoding_minutes of this EncodingStats.
:type: list[BillableEncodingMinutes]
"""
if billable_encoding_minutes is not None:
if not isinstance(billable_encoding_minutes, list):
raise TypeError("Invalid type for `billable_encoding_minutes`, type has to be `list[BillableEncodingMinutes]`")
self._billable_encoding_minutes = billable_encoding_minutes
@property
def billable_transmuxing_minutes(self):
# type: () -> float
"""Gets the billable_transmuxing_minutes of this EncodingStats.
Billable transmuxing minutes (required)
:return: The billable_transmuxing_minutes of this EncodingStats.
:rtype: float
"""
return self._billable_transmuxing_minutes
@billable_transmuxing_minutes.setter
def billable_transmuxing_minutes(self, billable_transmuxing_minutes):
# type: (float) -> None
"""Sets the billable_transmuxing_minutes of this EncodingStats.
Billable transmuxing minutes (required)
:param billable_transmuxing_minutes: The billable_transmuxing_minutes of this EncodingStats.
:type: float
"""
if billable_transmuxing_minutes is not None:
if not isinstance(billable_transmuxing_minutes, (float, int)):
raise TypeError("Invalid type for `billable_transmuxing_minutes`, type has to be `float`")
self._billable_transmuxing_minutes = billable_transmuxing_minutes
@property
def billable_feature_minutes(self):
# type: () -> float
"""Gets the billable_feature_minutes of this EncodingStats.
Billable feature minutes
:return: The billable_feature_minutes of this EncodingStats.
:rtype: float
"""
return self._billable_feature_minutes
@billable_feature_minutes.setter
def billable_feature_minutes(self, billable_feature_minutes):
# type: (float) -> None
"""Sets the billable_feature_minutes of this EncodingStats.
Billable feature minutes
:param billable_feature_minutes: The billable_feature_minutes of this EncodingStats.
:type: float
"""
if billable_feature_minutes is not None:
if not isinstance(billable_feature_minutes, (float, int)):
raise TypeError("Invalid type for `billable_feature_minutes`, type has to be `float`")
self._billable_feature_minutes = billable_feature_minutes
@property
def streams(self):
# type: () -> list[StatisticsPerStream]
"""Gets the streams of this EncodingStats.
Detailed statistics per stream (required)
:return: The streams of this EncodingStats.
:rtype: list[StatisticsPerStream]
"""
return self._streams
@streams.setter
def streams(self, streams):
# type: (list) -> None
"""Sets the streams of this EncodingStats.
Detailed statistics per stream (required)
:param streams: The streams of this EncodingStats.
:type: list[StatisticsPerStream]
"""
if streams is not None:
if not isinstance(streams, list):
raise TypeError("Invalid type for `streams`, type has to be `list[StatisticsPerStream]`")
self._streams = streams
@property
def muxings(self):
# type: () -> list[StatisticsPerMuxing]
"""Gets the muxings of this EncodingStats.
Detailed statistics per muxing (required)
:return: The muxings of this EncodingStats.
:rtype: list[StatisticsPerMuxing]
"""
return self._muxings
@muxings.setter
def muxings(self, muxings):
# type: (list) -> None
"""Sets the muxings of this EncodingStats.
Detailed statistics per muxing (required)
:param muxings: The muxings of this EncodingStats.
:type: list[StatisticsPerMuxing]
"""
if muxings is not None:
if not isinstance(muxings, list):
raise TypeError("Invalid type for `muxings`, type has to be `list[StatisticsPerMuxing]`")
self._muxings = muxings
@property
def features(self):
# type: () -> list[BillableEncodingFeatureMinutes]
"""Gets the features of this EncodingStats.
Detailed statistics per feature
:return: The features of this EncodingStats.
:rtype: list[BillableEncodingFeatureMinutes]
"""
return self._features
@features.setter
def features(self, features):
# type: (list) -> None
"""Sets the features of this EncodingStats.
Detailed statistics per feature
:param features: The features of this EncodingStats.
:type: list[BillableEncodingFeatureMinutes]
"""
if features is not None:
if not isinstance(features, list):
raise TypeError("Invalid type for `features`, type has to be `list[BillableEncodingFeatureMinutes]`")
self._features = features
[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, EncodingStats):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other