AI-generated Key Takeaways
-
GCKMediaQueueDataBuilder is a builder object used to construct new or derived GCKMediaQueueData instances.
-
It can be initialized with a queue type or an existing GCKMediaQueueData instance.
-
The builder allows setting properties like queue type, ID, name, entity, repeat mode, container metadata, start index, start time, and queue items.
-
The build method creates a GCKMediaQueueData instance using the attributes set on the builder.
Overview
A builder object for constructing new or derived GCKMediaQueueData
instances.
The builder may be used to derive GCKMediaQueueData
from an existing one.
- Since
- 4.4.1
Inherits NSObject.
GCKMediaQueueData
with the given required attributes, and all other attributes initialized to default values. More...
Method Detail
| - (instancetype) initWithQueueType: | ( GCKMediaQueueType ) | queueType |
Constructs a new GCKMediaQueueData
with the given required attributes, and all other attributes initialized to default values.
| - (instancetype) initWithQueueData: | ( GCKMediaQueueData *) | queueData |
Constructs a new GCKMediaQueueData
with the given GCKMediaQueueData
instance.
| - ( GCKMediaQueueData *) build |
Builds a GCKMediaQueueData
using the builder's current attributes.
- Returns
- The new
GCKMediaQueueDatainstance.
Property Detail
The queue type.
The queue id.
The display name for queue.
The deep link for the media as used by Google Assistant, if any.
The repeat mode of queue.
The container metadata.
The index of the item to start playing with.
Only for load request.
The playback start time, in seconds.
Only for load request. If not set, the receiver will set the start time depending on the stream type. For non-live streams: loaded from 0. For live streams: loaded from the most recent position.
The queueItems.
Only for load requests.

