GoogleInteractiveMediaAds Framework Reference

IMAVideoStitcherLiveStreamRequest

@interface IMAVideoStitcherLiveStreamRequest : IMAPodStreamRequest

Data object describing a stream request for a Google video stitcher live serving stream.

  • The live stream ID for the stream.

    Declaration

    Swift

    var liveStreamEventID: String { get }

    Objective-C

    @property (nonatomic, readonly) NSString *_Nonnull liveStreamEventID;
  • The region for the stream.

    Declaration

    Swift

    var region: String { get }

    Objective-C

    @property (nonatomic, readonly) NSString *_Nonnull region;
  • The project number for the stream.

    Declaration

    Swift

    var projectNumber: String { get }

    Objective-C

    @property (nonatomic, readonly) NSString *_Nonnull projectNumber;
  • The OAuth Token for the stream.

    Declaration

    Swift

    var oAuthToken: String { get }

    Objective-C

    @property (nonatomic, readonly) NSString *_Nonnull OAuthToken;
  • Initializes a stream request instance with the given network code and custom asset key. Uses the given ad display container to display the stream.

    Declaration

    Objective-C

    - (nonnull instancetype)
        initWithLiveStreamEventID:(nonnull NSString *)liveStreamEventID
                           region:(nonnull NSString *)region
                    projectNumber:(nonnull NSString *)projectNumber
                       OAuthToken:(nonnull NSString *)OAuthToken
                      networkCode:(nonnull NSString *)networkCode
                   customAssetKey:(nonnull NSString *)customAssetKey
               adDisplayContainer:
                   (nonnull IMAAdDisplayContainer *)adDisplayContainer
                     videoDisplay:(nonnull id<IMAVideoDisplay>)videoDisplay
                      userContext:(nullable id)userContext;

    Parameters

    liveStreamEventID

    The live stream ID for the stream.

    region

    The region for the stream.

    projectNumber

    The project number for the stream.

    OAuthToken

    The OAuth Token for the stream.

    networkCode

    The network code for the stream.

    customAssetKey

    The asset key for the stream.

    adDisplayContainer

    The IMAAdDisplayContainer for rendering the ad UI.

    videoDisplay

    The IMAVideoDisplay where the stream will be played.

    userContext

    The user context for tracking requests (optional)

    Return Value

    The IMAVideoStitcherLiveStreamRequest instance.

  • Initializes a stream request instance with the given network code and custom asset key. Uses the given ad display container to display the stream. Uses the picture in picture proxy to track PIP events.

    Declaration

    Objective-C

    - (nonnull instancetype)
        initWithLiveStreamEventID:(nonnull NSString *)liveStreamEventID
                           region:(nonnull NSString *)region
                    projectNumber:(nonnull NSString *)projectNumber
                       OAuthToken:(nonnull NSString *)OAuthToken
                      networkCode:(nonnull NSString *)networkCode
                   customAssetKey:(nonnull NSString *)customAssetKey
               adDisplayContainer:
                   (nonnull IMAAdDisplayContainer *)adDisplayContainer
                     videoDisplay:(nonnull id<IMAVideoDisplay>)videoDisplay
            pictureInPictureProxy:
                (nullable IMAPictureInPictureProxy *)pictureInPictureProxy
                      userContext:(nullable id)userContext;

    Parameters

    liveStreamEventID

    The live stream ID for the stream.

    region

    The region for the stream.

    projectNumber

    The project number for the stream.

    OAuthToken

    The OAuth Token for the stream.

    networkCode

    The network code for the stream.

    customAssetKey

    The asset key for the stream.

    adDisplayContainer

    The IMAAdDisplayContainer for rendering the ad UI.

    videoDisplay

    The IMAVideoDisplay where the stream will be played.

    pictureInPictureProxy

    The IMAPictureInPictureProxy for tracking PIP events.

    userContext

    The user context for tracking requests (optional)

    Return Value

    The IMAVideoStitcherLiveStreamRequest instance.