-
Notifications
You must be signed in to change notification settings - Fork 10
/
StreamsLiveResponse.ts
84 lines (73 loc) · 2.23 KB
/
StreamsLiveResponse.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import {map, mapArray} from '../common/Mapper';
import StreamsAdConfigResponse from './StreamsAdConfigResponse';
import StreamsDomainRestrictionResponse from './StreamsDomainRestrictionResponse';
import StreamsLiveLifeCycle from './StreamsLiveLifeCycle';
import StreamsResponse from './StreamsResponse';
import StreamsStyleConfigResponse from './StreamsStyleConfigResponse';
import StreamsTrimmingStatus from './StreamsTrimmingStatus';
import StreamsType from './StreamsType';
/**
* @export
* @class StreamsLiveResponse
*/
export class StreamsLiveResponse extends StreamsResponse {
/**
* Discriminator property for StreamsResponse
* @type {string}
* @memberof StreamsLiveResponse
*/
public readonly type: StreamsType = StreamsType.LIVE;
/**
* The streamKey of the stream
* @type {string}
* @memberof StreamsLiveResponse
*/
public streamKey?: string;
/**
* The life cycle of the stream
* @type {StreamsLiveLifeCycle}
* @memberof StreamsLiveResponse
*/
public lifeCycle?: StreamsLiveLifeCycle;
/**
* @type {StreamsStyleConfigResponse}
* @memberof StreamsLiveResponse
*/
public styleConfig?: StreamsStyleConfigResponse;
/**
* Poster URL
* @type {string}
* @memberof StreamsLiveResponse
*/
public posterUrl?: string;
/**
* @type {StreamsAdConfigResponse}
* @memberof StreamsLiveResponse
*/
public adConfig?: StreamsAdConfigResponse;
/**
* @type {StreamsDomainRestrictionResponse}
* @memberof StreamsLiveResponse
*/
public domainRestriction?: StreamsDomainRestrictionResponse;
/**
* Stream trimming information
* @type {StreamsTrimmingStatus}
* @memberof StreamsLiveResponse
*/
public trimming?: StreamsTrimmingStatus;
constructor(obj?: Partial<StreamsLiveResponse>) {
super(obj);
if(!obj) {
return;
}
this.streamKey = map(obj.streamKey);
this.lifeCycle = map(obj.lifeCycle);
this.styleConfig = map(obj.styleConfig, StreamsStyleConfigResponse);
this.posterUrl = map(obj.posterUrl);
this.adConfig = map(obj.adConfig, StreamsAdConfigResponse);
this.domainRestriction = map(obj.domainRestriction, StreamsDomainRestrictionResponse);
this.trimming = map(obj.trimming);
}
}
export default StreamsLiveResponse;