Source code for bitmovin_api_sdk.player.custom_builds.web.download.download_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_player_build_download import CustomPlayerBuildDownload
from bitmovin_api_sdk.models.response_envelope import ResponseEnvelope
from bitmovin_api_sdk.models.response_error import ResponseError


[docs]class DownloadApi(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(DownloadApi, self).__init__( api_key=api_key, tenant_org_id=tenant_org_id, base_url=base_url, logger=logger )
[docs] def get(self, custom_build_id, **kwargs): # type: (string_types, dict) -> CustomPlayerBuildDownload """Custom Web Player Build Download Link :param custom_build_id: Id of the custom player build :type custom_build_id: string_types, required :return: Custom player download information :rtype: CustomPlayerBuildDownload """ return self.api_client.get( '/player/custom-builds/web/{custom_build_id}/download', path_params={'custom_build_id': custom_build_id}, type=CustomPlayerBuildDownload, **kwargs )