SASBiddingAdResponse

Objective-C

@interface SASBiddingAdResponse : NSObject

Swift

class SASBiddingAdResponse : NSObject

Model class representing a bidding ad response.

  • YES if this bidding ad response has already been consumed, NO otherwise.

    Note

    A bidding ad can only be consumed once.

    Declaration

    Objective-C

    @property (readonly, getter=isConsumed) BOOL consumed;

    Swift

    var isConsumed: Bool { get }
  • The ad placement used to get this bidding ad response.

    Declaration

    Objective-C

    @property (readonly) SASAdPlacement *_Nonnull adPlacement;

    Swift

    var adPlacement: SASAdPlacement { get }
  • The price of the ad related to this bidding ad response.

    Declaration

    Objective-C

    @property (readonly) SASBiddingAdPrice *_Nonnull price;

    Swift

    var price: SASBiddingAdPrice { get }
  • The bidding ad format related to this bidding ad response.

    Declaration

    Objective-C

    @property (readonly) SASBiddingAdFormatType formatType;

    Swift

    var formatType: SASBiddingAdFormatType { get }