bitmovin_api_sdk.encoding.manifests.dash.periods.custom_xml_elements package

Submodules

bitmovin_api_sdk.encoding.manifests.dash.periods.custom_xml_elements.custom_xml_element_list_query_params module

class bitmovin_api_sdk.encoding.manifests.dash.periods.custom_xml_elements.custom_xml_element_list_query_params.CustomXmlElementListQueryParams(offset=None, limit=None)[source]

Bases: object

property attribute_map
property openapi_types

bitmovin_api_sdk.encoding.manifests.dash.periods.custom_xml_elements.custom_xml_elements_api module

class bitmovin_api_sdk.encoding.manifests.dash.periods.custom_xml_elements.custom_xml_elements_api.CustomXmlElementsApi(**kwargs)[source]

Bases: BaseApi

create(manifest_id, period_id, custom_xml_element, **kwargs)[source]

Add Custom XML Element to Period

Parameters:
  • manifest_id (string_types, required) – Id of the manifest

  • period_id (string_types, required) – Id of the period

  • custom_xml_element (CustomXmlElement, required) – Data of the custom XML element to be added to the period

Returns:

Custom XML Element

Return type:

CustomXmlElement

delete(manifest_id, period_id, custom_xml_element_id, **kwargs)[source]

Delete Custom XML Element

Parameters:
  • manifest_id (string_types, required) – Id of the manifest

  • period_id (string_types, required) – Id of the period

  • custom_xml_element_id (string_types, required) – Id of the Custom XML Element

Returns:

Id of the Custom XML Element

Return type:

BitmovinResponse

get(manifest_id, period_id, custom_xml_element_id, **kwargs)[source]

Custom XML Element Details

Parameters:
  • manifest_id (string_types, required) – Id of the manifest

  • period_id (string_types, required) – Id of the period

  • custom_xml_element_id (string_types, required) – Id of the Custom XML Element

Returns:

Custom XML Element details

Return type:

CustomXmlElement

list(manifest_id, period_id, query_params=None, **kwargs)[source]

List all Custom XML Elements of Period

Parameters:
  • manifest_id (string_types, required) – Id of the manifest

  • period_id (string_types, required) – Id of the period

  • query_params (CustomXmlElementListQueryParams) – Query parameters

Returns:

List of Custom XML Elements

Return type:

CustomXmlElement

Module contents