Source code for bitmovin_api_sdk.encoding.encodings.muxings.webm.customdata.customdata_api

# coding: utf-8

from __future__ import absolute_import

from bitmovin_api_sdk.common import BaseApi, BitmovinApiLoggerBase
from bitmovin_api_sdk.common.poscheck import poscheck_except
from bitmovin_api_sdk.models.custom_data import CustomData
from bitmovin_api_sdk.models.response_envelope import ResponseEnvelope
from bitmovin_api_sdk.models.response_error import ResponseError


[docs]class CustomdataApi(BaseApi): @poscheck_except(2) def __init__(self, api_key, tenant_org_id=None, base_url=None, logger=None): # type: (str, str, str, BitmovinApiLoggerBase) -> None super(CustomdataApi, self).__init__( api_key=api_key, tenant_org_id=tenant_org_id, base_url=base_url, logger=logger )
[docs] def get(self, encoding_id, muxing_id, **kwargs): # type: (string_types, string_types, dict) -> CustomData """WebM muxing Custom Data :param encoding_id: Id of the encoding. :type encoding_id: string_types, required :param muxing_id: Id of the WebM muxing :type muxing_id: string_types, required :return: WebM muxing custom data :rtype: CustomData """ return self.api_client.get( '/encoding/encodings/{encoding_id}/muxings/webm/{muxing_id}/customData', path_params={'encoding_id': encoding_id, 'muxing_id': muxing_id}, type=CustomData, **kwargs )