BradmaxPlayerSdk
BPSMLiveStream.h
1 #ifndef BPSMLiveStream_h
2 #define BPSMLiveStream_h
3 
4 #import <Foundation/Foundation.h>
5 
7 @interface BPSMLiveStream : NSObject
8 
10 @property NSString *endDate;
11 
13 @property NSString *thankYouImageUrl;
14 
15 + (BPSMLiveStream *) newFromNSDictionary: (NSDictionary *)dict;
16 
17 - (NSDictionary *) toNSDictionary;
18 
19 @end
20 
21 #endif /* BPSMLiveStream_h */
NSString * thankYouImageUrl
URL to custom end splash screen presented after live stream transmission.
Definition: BPSMLiveStream.h:13
NSString * endDate
Planned end date of transmission. Date time stored as ISO 8601 string (https://en....
Definition: BPSMLiveStream.h:10
Configuration holder for liveStream transmission additonal configuration.
Definition: BPSMLiveStream.m:4