BradmaxPlayerSdk
BPSMSplashImage.h
1 #ifndef BPSMSplashImage_h
2 #define BPSMSplashImage_h
3 
4 #import <Foundation/Foundation.h>
5 
7 @interface BPSMSplashImage : NSObject
8 
10 @property NSString *url;
11 
13 @property NSNumber *width;
14 
16 @property NSNumber *height;
17 
18 + (BPSMSplashImage *) newFromNSDictionary: (NSDictionary *)dict;
19 
20 - (NSDictionary *) toNSDictionary;
21 
22 @end
23 
24 #endif /* BPSMSplashImage_h */
NSNumber * height
Height of image asset in pixels.
Definition: BPSMSplashImage.h:16
Represents start splash image presented on player before playback.
Definition: BPSMSplashImage.m:4
NSString * url
URL pointing to image asset.
Definition: BPSMSplashImage.h:10
NSNumber * width
Width of image asset in pixels.
Definition: BPSMSplashImage.h:13