BitmovinApiSdk\Models\SceneType
Synopsis
class SceneType
extends Enum
{
- // methods
- public static SceneType create()
- public static SceneType OPENING_TITLES()
- public static SceneType EPISODE_TITLE_CARD()
- public static SceneType STUDIO_LOGO_BUMPER()
- public static SceneType NETWORK_OR_PLATFORM_IDENT()
- public static SceneType RECAP()
- public static SceneType PREVIEW_THIS_TITLE()
- public static SceneType PROMO_OTHER_TITLE()
- public static SceneType TRAILER_OTHER_TITLE()
- public static SceneType ADS()
- public static SceneType ACT_BREAK_EYECATCH()
- public static SceneType TECHNICAL_SLATE_OR_TEST()
- public static SceneType MAIN_CONTENT()
- public static SceneType MID_CREDIT_SCENE()
- public static SceneType POST_CREDIT_SCENE()
- public static SceneType END_CREDITS()
- 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
- ACT_BREAK_EYECATCH() — Short bumpers marking act/ad breaks (incl. anime eyecatches)
- ADS() — Commercial advertisements with promotional intent and call-to-action
- END_CREDITS() — Closing credits, copyright notices, staff acknowledgments
- EPISODE_TITLE_CARD() — Episode-specific title/chapter card (e.g., "S02E04 — The Pact")
- MAIN_CONTENT() — Main narrative, dialogue, or educational material (default)
- MID_CREDIT_SCENE() — Narrative content interspersed within end credits
- NETWORK_OR_PLATFORM_IDENT() — Network/platform idents/slates (e.g., "A Netflix Original", channel idents)
- OPENING_TITLES() — Opening sequence presenting title, credits, and/or thematic elements; no in-world character dialogue
- POST_CREDIT_SCENE() — Narrative content appearing after all credits finish
- PREVIEW_THIS_TITLE() — Teaser for this or the next episode of the same title
- PROMO_OTHER_TITLE() — Network promo for a different show on the same network/platform (schedule-centric)
- RECAP() — "Previously on …" montage sequences from previous episodes
- STUDIO_LOGO_BUMPER() — Production/distributor logo stingers (e.g., MGM, WB, New Line)
- TECHNICAL_SLATE_OR_TEST() — Technical/packaging: test bars, countdowns, black/slates, legal-only cards
- TRAILER_OTHER_TITLE() — Full/standard trailer for a different title (cinematic style, not schedule-centric)
- UNKNOWN() — Fallback when AI confidence 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