-
Notifications
You must be signed in to change notification settings - Fork 10
/
EncodingStats.ts
125 lines (109 loc) · 3.14 KB
/
EncodingStats.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
import {map, mapArray} from '../common/Mapper';
import BillableEncodingFeatureMinutes from './BillableEncodingFeatureMinutes';
import BillableEncodingMinutes from './BillableEncodingMinutes';
import EgressInformation from './EgressInformation';
import StatisticsPerMuxing from './StatisticsPerMuxing';
import StatisticsPerStream from './StatisticsPerStream';
/**
* @export
* @class EncodingStats
*/
export class EncodingStats {
/**
* Date, format. yyyy-MM-dd
* @type {Date}
* @memberof EncodingStats
*/
public date?: Date;
/**
* The id of the encoding (required)
* @type {string}
* @memberof EncodingStats
*/
public encodingId?: string;
/**
* Total bytes encoded
* @type {number}
* @memberof EncodingStats
*/
public bytesEncoded?: number;
/**
* Total time encoded
* @type {number}
* @memberof EncodingStats
*/
public timeEncoded?: number;
/**
* Downloaded size of the input file
* @type {number}
* @memberof EncodingStats
*/
public downloadedSize?: number;
/**
* Billable minutes
* @type {number}
* @memberof EncodingStats
*/
public billableMinutes?: number;
/**
* Billable egress output
* @type {EgressInformation[]}
* @memberof EncodingStats
*/
public billableEgressBytes?: EgressInformation[];
/**
* Detailed statistics per stream
* @type {BillableEncodingMinutes[]}
* @memberof EncodingStats
*/
public billableEncodingMinutes?: BillableEncodingMinutes[];
/**
* Billable transmuxing minutes (required)
* @type {number}
* @memberof EncodingStats
*/
public billableTransmuxingMinutes?: number;
/**
* Billable feature minutes
* @type {number}
* @memberof EncodingStats
*/
public billableFeatureMinutes?: number;
/**
* Detailed statistics per stream (required)
* @type {StatisticsPerStream[]}
* @memberof EncodingStats
*/
public streams?: StatisticsPerStream[];
/**
* Detailed statistics per muxing (required)
* @type {StatisticsPerMuxing[]}
* @memberof EncodingStats
*/
public muxings?: StatisticsPerMuxing[];
/**
* Detailed statistics per feature
* @type {BillableEncodingFeatureMinutes[]}
* @memberof EncodingStats
*/
public features?: BillableEncodingFeatureMinutes[];
constructor(obj?: Partial<EncodingStats>) {
if(!obj) {
return;
}
this.date = map(obj.date, Date);
this.encodingId = map(obj.encodingId);
this.bytesEncoded = map(obj.bytesEncoded);
this.timeEncoded = map(obj.timeEncoded);
this.downloadedSize = map(obj.downloadedSize);
this.billableMinutes = map(obj.billableMinutes);
this.billableEgressBytes = mapArray(obj.billableEgressBytes, EgressInformation);
this.billableEncodingMinutes = mapArray(obj.billableEncodingMinutes, BillableEncodingMinutes);
this.billableTransmuxingMinutes = map(obj.billableTransmuxingMinutes);
this.billableFeatureMinutes = map(obj.billableFeatureMinutes);
this.streams = mapArray(obj.streams, StatisticsPerStream);
this.muxings = mapArray(obj.muxings, StatisticsPerMuxing);
this.features = mapArray(obj.features, BillableEncodingFeatureMinutes);
}
}
export default EncodingStats;