OOVASTCompanionAds.h
1 #import <Foundation/Foundation.h>
2 #import "OOTBXML.h"
3 
4 typedef NS_ENUM(NSInteger, RequiredType) {
5  RequiredTypeAll,
6  RequiredTypeAny,
7  RequiredTypeNone
8 };
9 
14 @interface OOVASTCompanionAds : NSObject
15 
16 - (id)initWithElement:(OOTBXMLElement *)element;
17 
18 @property (readonly, nonatomic) RequiredType required;
19 @property (readonly, nonatomic, strong) NSMutableArray *companions;
20 
21 @end
RequiredType required
Definition: OOVASTCompanionAds.h:18
Definition: OOTBXML.h:54
A list of companion ads that was defined in a VAST XML.
Definition: OOVASTCompanionAds.h:14
NSMutableArray * companions
Definition: OOVASTCompanionAds.h:19