@alicloud/live20161101 2.3.3 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +15 -0
- package/dist/client.js +51 -0
- package/dist/client.js.map +1 -1
- package/dist/models/DescribeLiveRtcRecordUsageDataRequest.d.ts +50 -0
- package/dist/models/DescribeLiveRtcRecordUsageDataRequest.js +66 -0
- package/dist/models/DescribeLiveRtcRecordUsageDataRequest.js.map +1 -0
- package/dist/models/DescribeLiveRtcRecordUsageDataResponse.d.ts +19 -0
- package/dist/models/DescribeLiveRtcRecordUsageDataResponse.js +69 -0
- package/dist/models/DescribeLiveRtcRecordUsageDataResponse.js.map +1 -0
- package/dist/models/DescribeLiveRtcRecordUsageDataResponseBody.d.ts +99 -0
- package/dist/models/DescribeLiveRtcRecordUsageDataResponseBody.js +106 -0
- package/dist/models/DescribeLiveRtcRecordUsageDataResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +4 -0
- package/dist/models/model.js +41 -33
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +58 -0
- package/src/models/DescribeLiveRtcRecordUsageDataRequest.ts +71 -0
- package/src/models/DescribeLiveRtcRecordUsageDataResponse.ts +40 -0
- package/src/models/DescribeLiveRtcRecordUsageDataResponseBody.ts +151 -0
- package/src/models/model.ts +4 -0
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class DescribeLiveRtcRecordUsageDataRequest extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @remarks
|
|
5
|
+
* This parameter is required.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* intl7f92-a5a8*************7ce4eb44a6
|
|
9
|
+
*/
|
|
10
|
+
appId?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @remarks
|
|
13
|
+
* This parameter is required.
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* 2022-10-10T21:00:00Z
|
|
17
|
+
*/
|
|
18
|
+
endTime?: string;
|
|
19
|
+
/**
|
|
20
|
+
* @example
|
|
21
|
+
* 3600
|
|
22
|
+
*/
|
|
23
|
+
interval?: string;
|
|
24
|
+
/**
|
|
25
|
+
* @remarks
|
|
26
|
+
* This parameter is required.
|
|
27
|
+
*
|
|
28
|
+
* @example
|
|
29
|
+
* 0
|
|
30
|
+
*/
|
|
31
|
+
recordMode?: string;
|
|
32
|
+
/**
|
|
33
|
+
* @remarks
|
|
34
|
+
* This parameter is required.
|
|
35
|
+
*
|
|
36
|
+
* @example
|
|
37
|
+
* 2017-12-21T08:00:00Z
|
|
38
|
+
*/
|
|
39
|
+
startTime?: string;
|
|
40
|
+
static names(): {
|
|
41
|
+
[key: string]: string;
|
|
42
|
+
};
|
|
43
|
+
static types(): {
|
|
44
|
+
[key: string]: any;
|
|
45
|
+
};
|
|
46
|
+
validate(): void;
|
|
47
|
+
constructor(map?: {
|
|
48
|
+
[key: string]: any;
|
|
49
|
+
});
|
|
50
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.DescribeLiveRtcRecordUsageDataRequest = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class DescribeLiveRtcRecordUsageDataRequest extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
appId: 'AppId',
|
|
43
|
+
endTime: 'EndTime',
|
|
44
|
+
interval: 'Interval',
|
|
45
|
+
recordMode: 'RecordMode',
|
|
46
|
+
startTime: 'StartTime',
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
static types() {
|
|
50
|
+
return {
|
|
51
|
+
appId: 'string',
|
|
52
|
+
endTime: 'string',
|
|
53
|
+
interval: 'string',
|
|
54
|
+
recordMode: 'string',
|
|
55
|
+
startTime: 'string',
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
validate() {
|
|
59
|
+
super.validate();
|
|
60
|
+
}
|
|
61
|
+
constructor(map) {
|
|
62
|
+
super(map);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
exports.DescribeLiveRtcRecordUsageDataRequest = DescribeLiveRtcRecordUsageDataRequest;
|
|
66
|
+
//# sourceMappingURL=DescribeLiveRtcRecordUsageDataRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescribeLiveRtcRecordUsageDataRequest.js","sourceRoot":"","sources":["../../src/models/DescribeLiveRtcRecordUsageDataRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,qCAAsC,SAAQ,KAAK,CAAC,KAAK;IAsCpE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,KAAK,EAAE,OAAO;YACd,OAAO,EAAE,SAAS;YAClB,QAAQ,EAAE,UAAU;YACpB,UAAU,EAAE,YAAY;YACxB,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,KAAK,EAAE,QAAQ;YACf,OAAO,EAAE,QAAQ;YACjB,QAAQ,EAAE,QAAQ;YAClB,UAAU,EAAE,QAAQ;YACpB,SAAS,EAAE,QAAQ;SACpB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjED,sFAiEC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { DescribeLiveRtcRecordUsageDataResponseBody } from "./DescribeLiveRtcRecordUsageDataResponseBody";
|
|
3
|
+
export declare class DescribeLiveRtcRecordUsageDataResponse extends $dara.Model {
|
|
4
|
+
headers?: {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
};
|
|
7
|
+
statusCode?: number;
|
|
8
|
+
body?: DescribeLiveRtcRecordUsageDataResponseBody;
|
|
9
|
+
static names(): {
|
|
10
|
+
[key: string]: string;
|
|
11
|
+
};
|
|
12
|
+
static types(): {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
};
|
|
15
|
+
validate(): void;
|
|
16
|
+
constructor(map?: {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
});
|
|
19
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.DescribeLiveRtcRecordUsageDataResponse = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const DescribeLiveRtcRecordUsageDataResponseBody_1 = require("./DescribeLiveRtcRecordUsageDataResponseBody");
|
|
40
|
+
class DescribeLiveRtcRecordUsageDataResponse extends $dara.Model {
|
|
41
|
+
static names() {
|
|
42
|
+
return {
|
|
43
|
+
headers: 'headers',
|
|
44
|
+
statusCode: 'statusCode',
|
|
45
|
+
body: 'body',
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
static types() {
|
|
49
|
+
return {
|
|
50
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
51
|
+
statusCode: 'number',
|
|
52
|
+
body: DescribeLiveRtcRecordUsageDataResponseBody_1.DescribeLiveRtcRecordUsageDataResponseBody,
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
validate() {
|
|
56
|
+
if (this.headers) {
|
|
57
|
+
$dara.Model.validateMap(this.headers);
|
|
58
|
+
}
|
|
59
|
+
if (this.body && typeof this.body.validate === 'function') {
|
|
60
|
+
this.body.validate();
|
|
61
|
+
}
|
|
62
|
+
super.validate();
|
|
63
|
+
}
|
|
64
|
+
constructor(map) {
|
|
65
|
+
super(map);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
exports.DescribeLiveRtcRecordUsageDataResponse = DescribeLiveRtcRecordUsageDataResponse;
|
|
69
|
+
//# sourceMappingURL=DescribeLiveRtcRecordUsageDataResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescribeLiveRtcRecordUsageDataResponse.js","sourceRoot":"","sources":["../../src/models/DescribeLiveRtcRecordUsageDataResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,6GAA0G;AAG1G,MAAa,sCAAuC,SAAQ,KAAK,CAAC,KAAK;IAIrE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE;YACtE,UAAU,EAAE,QAAQ;YACpB,IAAI,EAAE,uFAA0C;SACjD,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,OAAO,EAAE,CAAC;YAChB,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,CAAC;QACD,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,wFAiCC"}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class DescribeLiveRtcRecordUsageDataResponseBodyData extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* 20
|
|
6
|
+
*/
|
|
7
|
+
audioDuration?: number;
|
|
8
|
+
/**
|
|
9
|
+
* @example
|
|
10
|
+
* 2022-10-10T20:00:00Z
|
|
11
|
+
*/
|
|
12
|
+
timestamp?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @example
|
|
15
|
+
* 150
|
|
16
|
+
*/
|
|
17
|
+
totalDuration?: number;
|
|
18
|
+
/**
|
|
19
|
+
* @example
|
|
20
|
+
* 10
|
|
21
|
+
*/
|
|
22
|
+
v1080Duration?: number;
|
|
23
|
+
/**
|
|
24
|
+
* @example
|
|
25
|
+
* 30
|
|
26
|
+
*/
|
|
27
|
+
v480Duration?: number;
|
|
28
|
+
/**
|
|
29
|
+
* @example
|
|
30
|
+
* 40
|
|
31
|
+
*/
|
|
32
|
+
v720Duration?: number;
|
|
33
|
+
static names(): {
|
|
34
|
+
[key: string]: string;
|
|
35
|
+
};
|
|
36
|
+
static types(): {
|
|
37
|
+
[key: string]: any;
|
|
38
|
+
};
|
|
39
|
+
validate(): void;
|
|
40
|
+
constructor(map?: {
|
|
41
|
+
[key: string]: any;
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
export declare class DescribeLiveRtcRecordUsageDataResponseBody extends $dara.Model {
|
|
45
|
+
/**
|
|
46
|
+
* @example
|
|
47
|
+
* 7fd341b3-c6fa-43e1-96b8-7295a1dd****
|
|
48
|
+
*/
|
|
49
|
+
appId?: string;
|
|
50
|
+
/**
|
|
51
|
+
* @example
|
|
52
|
+
* 20
|
|
53
|
+
*/
|
|
54
|
+
audioSummaryDuration?: number;
|
|
55
|
+
data?: DescribeLiveRtcRecordUsageDataResponseBodyData[];
|
|
56
|
+
/**
|
|
57
|
+
* @example
|
|
58
|
+
* 0
|
|
59
|
+
*/
|
|
60
|
+
recordMode?: string;
|
|
61
|
+
/**
|
|
62
|
+
* @remarks
|
|
63
|
+
* Id of the request
|
|
64
|
+
*
|
|
65
|
+
* @example
|
|
66
|
+
* 16A96B9A-F2*************B92E68F4CD8
|
|
67
|
+
*/
|
|
68
|
+
requestId?: string;
|
|
69
|
+
/**
|
|
70
|
+
* @example
|
|
71
|
+
* 150
|
|
72
|
+
*/
|
|
73
|
+
totalSummaryDuration?: number;
|
|
74
|
+
/**
|
|
75
|
+
* @example
|
|
76
|
+
* 10
|
|
77
|
+
*/
|
|
78
|
+
v1080SummaryDuration?: number;
|
|
79
|
+
/**
|
|
80
|
+
* @example
|
|
81
|
+
* 30
|
|
82
|
+
*/
|
|
83
|
+
v480SummaryDuration?: number;
|
|
84
|
+
/**
|
|
85
|
+
* @example
|
|
86
|
+
* 40
|
|
87
|
+
*/
|
|
88
|
+
v720SummaryDuration?: number;
|
|
89
|
+
static names(): {
|
|
90
|
+
[key: string]: string;
|
|
91
|
+
};
|
|
92
|
+
static types(): {
|
|
93
|
+
[key: string]: any;
|
|
94
|
+
};
|
|
95
|
+
validate(): void;
|
|
96
|
+
constructor(map?: {
|
|
97
|
+
[key: string]: any;
|
|
98
|
+
});
|
|
99
|
+
}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.DescribeLiveRtcRecordUsageDataResponseBody = exports.DescribeLiveRtcRecordUsageDataResponseBodyData = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class DescribeLiveRtcRecordUsageDataResponseBodyData extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
audioDuration: 'AudioDuration',
|
|
43
|
+
timestamp: 'Timestamp',
|
|
44
|
+
totalDuration: 'TotalDuration',
|
|
45
|
+
v1080Duration: 'V1080Duration',
|
|
46
|
+
v480Duration: 'V480Duration',
|
|
47
|
+
v720Duration: 'V720Duration',
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
static types() {
|
|
51
|
+
return {
|
|
52
|
+
audioDuration: 'number',
|
|
53
|
+
timestamp: 'string',
|
|
54
|
+
totalDuration: 'number',
|
|
55
|
+
v1080Duration: 'number',
|
|
56
|
+
v480Duration: 'number',
|
|
57
|
+
v720Duration: 'number',
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
validate() {
|
|
61
|
+
super.validate();
|
|
62
|
+
}
|
|
63
|
+
constructor(map) {
|
|
64
|
+
super(map);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
exports.DescribeLiveRtcRecordUsageDataResponseBodyData = DescribeLiveRtcRecordUsageDataResponseBodyData;
|
|
68
|
+
class DescribeLiveRtcRecordUsageDataResponseBody extends $dara.Model {
|
|
69
|
+
static names() {
|
|
70
|
+
return {
|
|
71
|
+
appId: 'AppId',
|
|
72
|
+
audioSummaryDuration: 'AudioSummaryDuration',
|
|
73
|
+
data: 'Data',
|
|
74
|
+
recordMode: 'RecordMode',
|
|
75
|
+
requestId: 'RequestId',
|
|
76
|
+
totalSummaryDuration: 'TotalSummaryDuration',
|
|
77
|
+
v1080SummaryDuration: 'V1080SummaryDuration',
|
|
78
|
+
v480SummaryDuration: 'V480SummaryDuration',
|
|
79
|
+
v720SummaryDuration: 'V720SummaryDuration',
|
|
80
|
+
};
|
|
81
|
+
}
|
|
82
|
+
static types() {
|
|
83
|
+
return {
|
|
84
|
+
appId: 'string',
|
|
85
|
+
audioSummaryDuration: 'number',
|
|
86
|
+
data: { 'type': 'array', 'itemType': DescribeLiveRtcRecordUsageDataResponseBodyData },
|
|
87
|
+
recordMode: 'string',
|
|
88
|
+
requestId: 'string',
|
|
89
|
+
totalSummaryDuration: 'number',
|
|
90
|
+
v1080SummaryDuration: 'number',
|
|
91
|
+
v480SummaryDuration: 'number',
|
|
92
|
+
v720SummaryDuration: 'number',
|
|
93
|
+
};
|
|
94
|
+
}
|
|
95
|
+
validate() {
|
|
96
|
+
if (Array.isArray(this.data)) {
|
|
97
|
+
$dara.Model.validateArray(this.data);
|
|
98
|
+
}
|
|
99
|
+
super.validate();
|
|
100
|
+
}
|
|
101
|
+
constructor(map) {
|
|
102
|
+
super(map);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
exports.DescribeLiveRtcRecordUsageDataResponseBody = DescribeLiveRtcRecordUsageDataResponseBody;
|
|
106
|
+
//# sourceMappingURL=DescribeLiveRtcRecordUsageDataResponseBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescribeLiveRtcRecordUsageDataResponseBody.js","sourceRoot":"","sources":["../../src/models/DescribeLiveRtcRecordUsageDataResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,8CAA+C,SAAQ,KAAK,CAAC,KAAK;IA+B7E,MAAM,CAAC,KAAK;QACV,OAAO;YACL,aAAa,EAAE,eAAe;YAC9B,SAAS,EAAE,WAAW;YACtB,aAAa,EAAE,eAAe;YAC9B,aAAa,EAAE,eAAe;YAC9B,YAAY,EAAE,cAAc;YAC5B,YAAY,EAAE,cAAc;SAC7B,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,aAAa,EAAE,QAAQ;YACvB,SAAS,EAAE,QAAQ;YACnB,aAAa,EAAE,QAAQ;YACvB,aAAa,EAAE,QAAQ;YACvB,YAAY,EAAE,QAAQ;YACtB,YAAY,EAAE,QAAQ;SACvB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA5DD,wGA4DC;AAED,MAAa,0CAA2C,SAAQ,KAAK,CAAC,KAAK;IA6CzE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,KAAK,EAAE,OAAO;YACd,oBAAoB,EAAE,sBAAsB;YAC5C,IAAI,EAAE,MAAM;YACZ,UAAU,EAAE,YAAY;YACxB,SAAS,EAAE,WAAW;YACtB,oBAAoB,EAAE,sBAAsB;YAC5C,oBAAoB,EAAE,sBAAsB;YAC5C,mBAAmB,EAAE,qBAAqB;YAC1C,mBAAmB,EAAE,qBAAqB;SAC3C,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,KAAK,EAAE,QAAQ;YACf,oBAAoB,EAAE,QAAQ;YAC9B,IAAI,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,8CAA8C,EAAE;YACrF,UAAU,EAAE,QAAQ;YACpB,SAAS,EAAE,QAAQ;YACnB,oBAAoB,EAAE,QAAQ;YAC9B,oBAAoB,EAAE,QAAQ;YAC9B,mBAAmB,EAAE,QAAQ;YAC7B,mBAAmB,EAAE,QAAQ;SAC9B,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC;YAC5B,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACvC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAnFD,gGAmFC"}
|
package/dist/models/model.d.ts
CHANGED
|
@@ -225,6 +225,7 @@ export { DescribeLiveRecordNotifyConfigResponseBodyLiveRecordNotifyConfig } from
|
|
|
225
225
|
export { DescribeLiveRecordNotifyRecordsResponseBodyCallbackList } from './DescribeLiveRecordNotifyRecordsResponseBody';
|
|
226
226
|
export { DescribeLiveRecordVodConfigsResponseBodyLiveRecordVodConfigsLiveRecordVodConfig } from './DescribeLiveRecordVodConfigsResponseBody';
|
|
227
227
|
export { DescribeLiveRecordVodConfigsResponseBodyLiveRecordVodConfigs } from './DescribeLiveRecordVodConfigsResponseBody';
|
|
228
|
+
export { DescribeLiveRtcRecordUsageDataResponseBodyData } from './DescribeLiveRtcRecordUsageDataResponseBody';
|
|
228
229
|
export { DescribeLiveShiftConfigsResponseBodyContentConfig } from './DescribeLiveShiftConfigsResponseBody';
|
|
229
230
|
export { DescribeLiveShiftConfigsResponseBodyContent } from './DescribeLiveShiftConfigsResponseBody';
|
|
230
231
|
export { DescribeLiveSnapshotConfigResponseBodyLiveStreamSnapshotConfigListLiveStreamSnapshotConfig } from './DescribeLiveSnapshotConfigResponseBody';
|
|
@@ -1146,6 +1147,9 @@ export { DescribeLiveRecordNotifyRecordsResponse } from './DescribeLiveRecordNot
|
|
|
1146
1147
|
export { DescribeLiveRecordVodConfigsRequest } from './DescribeLiveRecordVodConfigsRequest';
|
|
1147
1148
|
export { DescribeLiveRecordVodConfigsResponseBody } from './DescribeLiveRecordVodConfigsResponseBody';
|
|
1148
1149
|
export { DescribeLiveRecordVodConfigsResponse } from './DescribeLiveRecordVodConfigsResponse';
|
|
1150
|
+
export { DescribeLiveRtcRecordUsageDataRequest } from './DescribeLiveRtcRecordUsageDataRequest';
|
|
1151
|
+
export { DescribeLiveRtcRecordUsageDataResponseBody } from './DescribeLiveRtcRecordUsageDataResponseBody';
|
|
1152
|
+
export { DescribeLiveRtcRecordUsageDataResponse } from './DescribeLiveRtcRecordUsageDataResponse';
|
|
1149
1153
|
export { DescribeLiveShiftConfigsRequest } from './DescribeLiveShiftConfigsRequest';
|
|
1150
1154
|
export { DescribeLiveShiftConfigsResponseBody } from './DescribeLiveShiftConfigsResponseBody';
|
|
1151
1155
|
export { DescribeLiveShiftConfigsResponse } from './DescribeLiveShiftConfigsResponse';
|