BitmovinApiSdk\Models\SceneType
Synopsis
class SceneType
extends Enum
{
- // methods
- public static SceneType create()
- public static SceneType LOGO_IDENT()
- public static SceneType OPENING_CREDITS()
- public static SceneType RECAP()
- public static SceneType PREVIEW_THIS_TITLE()
- public static SceneType PROMOTION_OTHER_TITLE()
- public static SceneType BREAK_BUMPER()
- public static SceneType END_CREDITS()
- public static SceneType ADS()
- public static SceneType MAIN_CONTENT()
- public static SceneType UNKNOWN()
- // Inherited methods from Enum
- public void __construct()
- public mixed getValue()
- public mixed getKey()
- public string __toString()
- public final bool equals()
- public static array keys()
- public static array values()
- public static array toArray()
- public static bool isValidKey()
- public static mixed search()
- public static SceneType __callStatic()
- public mixed jsonSerialize()
Hierarchy
Extends
Methods
public
- ADS() — Commercial advertisements with promotional intent and call-to-action
- BREAK_BUMPER() — Short bumper marking an act or advertising break
- END_CREDITS() — Closing credits, acknowledgments, or copyright notices
- LOGO_IDENT() — Network, studio, or platform identification bumpers
- MAIN_CONTENT() — Main narrative, dialogue, or educational material
- OPENING_CREDITS() — Opening sequence presenting title, credits, or thematic elements without in-world dialogue
- PREVIEW_THIS_TITLE() — Teaser or preview for this title or its upcoming episode
- PROMOTION_OTHER_TITLE() — Promotion or trailer for a different title or programming
- RECAP() — "Previously on …" montage sequences from prior episodes
- UNKNOWN() — Fallback when AI confidence is below minimum threshold
- create()
Inherited from BitmovinApiSdk\Common\Enum
public
- __callStatic() — Returns a value when called statically like so: MyEnum::SOME_VALUE() given SOME_VALUE is a class constant
- __toString()
- equals() — Determines if Enum should be considered equal with the variable passed as a parameter.
- getKey() — Returns the enum key (i.e. the constant name).
- getValue()
- isValidKey() — Check if is valid enum key
- jsonSerialize() — Specify data which should be serialized to JSON. This method returns data that can be serialized by json_encode() natively.
- keys() — Returns the names (keys) of all constants in the Enum class
- search() — Return key for value
- toArray() — Returns all possible values as an array
- values() — Returns instances of the Enum class of all Enum constants