GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

BlazeContentExtraInfo - iOS

Extra information about the content before, during, or after ads, when available.

public struct BlazeContentExtraInfo: Equatable, Hashable {
    public let previous: [String: String]?
    public let current: [String: String]?
    public let next: [String: String]?
}

Ads between Moments (IMA / custom native)

  • previous: Previous Moment extra info.
  • current: nil.
  • next: Next Moment extra info.

Ads between Stories (IMA / custom native)

  • previous: Previous Story extra info.
  • current: nil.
  • next: Next Story extra info.

Banner ads on Stories

  • previous: Previous Story extra info.
  • current: Current Story extra info.
  • next: Next Story extra info.

Ads between Stories pages (IMA / custom native)

  • previous: Previous page extra info.
  • current: Current Story extra info.
  • next: Next page extra info.

Videos (IMA)

  • previous: nil.
  • current: Current Video extra info.
  • next: nil.

Did this page help you?