BitmovinApiSdk\Models\DefaultManifestAttributeCondition
Synopsis
class DefaultManifestAttributeCondition
extends DefaultManifestCondition
{
- // members
- public string $attribute;
- public ConditionOperator $operator;
- public string $value;
- // Inherited members from DefaultManifestCondition
- public static string $discriminatorName;
- public static array $discriminatorMapping;
- // methods
- public void __construct()
- public $this attribute()
- public $this operator()
- public $this value()
- // Inherited methods from DefaultManifestCondition
- public void __construct()
- // Inherited methods from ApiResource
- public void __construct()
- public static $this create()
- public void toArray()
Hierarchy
Members
public
- $attribute — string
- $discriminatorMapping
- $discriminatorName
- $operator — BitmovinApiSdk\Models\ConditionOperator
- $value — string
Methods
public
- __construct()
- attribute() — The attribute that should be used for the evaluation: - audio.codec - audio.language - audio.bitrate - subtitle.format - subtitle.language - video.height - video.width - video.codec - video.bitrate - drm.type - muxing.type (required)
- operator() — The operator that should be used for the evaluation (required)
- value() — The value that should be used for comparison. Valid values depend on the attribute: - audio.codec (Enum; e.g., AAC, MP3, OPUS) - audio.language (String) - audio.bitrate (Integer) - subtitle.format (Enum; e.g., WEBVTT) - subtitle.language (String) - video.height (Integer) - video.width (Integer) - video.codec (Enum; e.g., AV1, H264, VP9) - video.bitrate (Integer) - drm.type (Enum; NoDrm, Cenc, CencWidevine, CencPlayReady, CencMarlin, CencFairPlay, Aes128, ClearKey, PrimeTime, Widevine, PlayReady, Marlin, FairPlay) - muxing.type (Enum; e.g., FMP4, MP4) (required)