BMPAdSurvey
Objective-C
@interface BMPAdSurvey : NSObject <BMPJsonable>
Swift
class AdSurvey : NSObject, BMPJsonable
A string representation of a URI to any resource relating to an integrated survey. Specified in InLine.Survey
in the VAST response.
-
A string representation of a URI to any resource relating to an integrated survey.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull uri;
Swift
var uri: String { get }
Return Value
A string representation of a URI to any resource relating to an integrated survey.
-
The MIME type of the resource being served.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *type;
Swift
var type: String? { get }
Return Value
The MIME type of the resource being served.
-
Unavailable
Undocumented
Declaration
Objective-C
+ (instancetype)new NS_UNAVAILABLE;
-
Unavailable
Undocumented
Declaration
Objective-C
- (instancetype)init NS_UNAVAILABLE;
-
Undocumented
Declaration
Objective-C
- (instancetype)initWithUri:(NSString *)uri type:(nullable NSString *)type NS_DESIGNATED_INITIALIZER;
Swift
init(uri: String, type: String?)