OOVASTStream.h
1 #import "OOStream.h"
2 
7 @interface OOVASTStream : OOStream {
8  BOOL scalable;
10  NSString *vastDeliveryType;
11  NSString *apiFramework;
12 }
13 
14 @property(readonly, nonatomic) BOOL scalable;
15 @property(readonly, nonatomic) BOOL maintainAspectRatio;
16 @property(readonly, nonatomic, strong) NSString *vastDeliveryType;
17 @property(readonly, nonatomic, strong) NSString *apiFramework;
24 - (id)initWithXML:(OOTBXMLElement *)xml;
25 
26 @end
OOStream.
Definition: OOStream.h:22
Definition: OOTBXML.h:54
NSString * vastDeliveryType
the vast delivery type of this stream
Definition: OOVASTStream.h:10
BOOL scalable
if this stream is scalable
Definition: OOVASTStream.h:8
BOOL maintainAspectRatio
if this stream must maintain the aspect ratio
Definition: OOVASTStream.h:9
Represents a single VAST stream that can be played in a Stream Player.
Definition: OOVASTStream.h:7
NSString * apiFramework
the apiFramework of this stream
Definition: OOVASTStream.h:11