Event data superclass for timed metadata events. This differs from Id3Event
in that the metadata is held at the manifest as opposed to segment internals.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-18 UTC."],[[["\u003cp\u003e\u003ccode\u003eTimedMetadataEvent\u003c/code\u003e is a superclass for timed metadata events, differentiating from \u003ccode\u003eId3Event\u003c/code\u003e by holding metadata at the manifest level instead of within segments.\u003c/p\u003e\n"],["\u003cp\u003eIt includes a constructor that takes the event type and timed metadata information as parameters.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003etimedMetadataInfo\u003c/code\u003e property provides access to the associated timed metadata information, ensuring it's always available and of the \u003ccode\u003ecast.framework.TimedMetadata\u003c/code\u003e type.\u003c/p\u003e\n"]]],["The `TimedMetadataEvent` class is the event data superclass for timed metadata events, where metadata is stored in the manifest, unlike `Id3Event`. It is constructed with the event `type` and `timedMetadataInfo`. `timedMetadataInfo`, a constant property, holds the non-null `TimedMetadata` information. The constructor takes the event type (from `cast.framework.events.EventType`) and the timed metadata as parameters, both of which must be non-null.\n"],null,["cast.[framework](/cast/docs/reference/web_receiver/cast.framework).[events](/cast/docs/reference/web_receiver/cast.framework.events).TimedMetadataEvent \nclass static\n\nEvent data superclass for timed metadata events. This differs from `Id3Event`\nin that the metadata is held at the manifest as opposed to segment internals.\n\nConstructor\n\nTimedMetadataEvent\n\nnew\nTimedMetadataEvent(type, timedMetadataInfo)\n\n| Parameter ||\n|-------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|\n| type | [cast.framework.events.EventType](/cast/docs/reference/web_receiver/cast.framework.events#.EventType) Type of this event. Value must not be null. |\n| timedMetadataInfo | [cast.framework.TimedMetadata](/cast/docs/reference/web_receiver/cast.framework.TimedMetadata) The timed metadata. Value must not be null. |\n\nProperty\n\ntimedMetadataInfo \nconstant\n\nnon-null [cast.framework.TimedMetadata](/cast/docs/reference/web_receiver/cast.framework.TimedMetadata)\n\nThe timed metadata information."]]