BMPAdvertiser

Objective-C


@interface BMPAdvertiser : NSObject <BMPJsonable>

Swift

class Advertiser : NSObject, BMPJsonable

Describes he advertiser as defined by the ad serving party. Specified in InLine.Advertiser in the VAST response.

  • The name of the advertiser as defined by the ad serving party.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSString *_Nonnull name;

    Swift

    var name: String { get }

    Return Value

    The name of the advertiser as defined by the ad serving party.

  • An identifier for the advertiser, provided by the ad server.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *identifier;

    Swift

    var identifier: String? { get }

    Return Value

    An identifier for the advertiser, provided by the ad server.

  • Unavailable

    Undocumented

    Declaration

    Objective-C

    + (instancetype)new NS_UNAVAILABLE;
  • Unavailable

    Undocumented

    Declaration

    Objective-C

    - (instancetype)init NS_UNAVAILABLE;
  • Undocumented

    Declaration

    Objective-C

    - (instancetype)initWithName:(NSString *)name
                      identifier:(nullable NSString *)identifier NS_DESIGNATED_INITIALIZER;

    Swift

    init(name: String, identifier: String?)