BMPAdTagConfig

Objective-C

@protocol BMPAdTagConfig <BMPAdConfig>

Swift

protocol AdTagConfig : AdConfig

Contains config options for an AdTag.

See

BMPAdTag
  • tag

    Defines the url and type of the ad manifest. If the tag is a VAST or VPAID manifest, then more specific scheduling options can be defined in the AdBreakConfig.

    See

    BMPAdTag

    Declaration

    Objective-C

    @property (nonatomic, readonly, nonnull) BMPAdTag *tag;

    Swift

    var tag: AdTag { get }

    Return Value

    The AdTag of the config.

  • Defines an array of fallback ad tags which will be tried one after the other if the original ad tag does not provide a valid response.

    See

    BMPAdTag

    Declaration

    Objective-C

    @property (nonatomic, readonly, nonnull) NSArray<BMPAdTag *> *fallbackTags;

    Swift

    var fallbackTags: [AdTag] { get }

    Return Value

    An array of fallback ad tags.