@alicloud/green20220302 3.2.4 → 3.3.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 +30 -0
- package/dist/client.js +84 -0
- package/dist/client.js.map +1 -1
- package/dist/models/MultiModalGuardAsyncRequest.d.ts +23 -0
- package/dist/models/MultiModalGuardAsyncRequest.js +60 -0
- package/dist/models/MultiModalGuardAsyncRequest.js.map +1 -0
- package/dist/models/MultiModalGuardAsyncResponse.d.ts +19 -0
- package/dist/models/MultiModalGuardAsyncResponse.js +69 -0
- package/dist/models/MultiModalGuardAsyncResponse.js.map +1 -0
- package/dist/models/MultiModalGuardAsyncResponseBody.d.ts +54 -0
- package/dist/models/MultiModalGuardAsyncResponseBody.js +88 -0
- package/dist/models/MultiModalGuardAsyncResponseBody.js.map +1 -0
- package/dist/models/MultiModalGuardAsyncResultRequest.d.ts +25 -0
- package/dist/models/MultiModalGuardAsyncResultRequest.js +60 -0
- package/dist/models/MultiModalGuardAsyncResultRequest.js.map +1 -0
- package/dist/models/MultiModalGuardAsyncResultResponse.d.ts +19 -0
- package/dist/models/MultiModalGuardAsyncResultResponse.js +69 -0
- package/dist/models/MultiModalGuardAsyncResultResponse.js.map +1 -0
- package/dist/models/MultiModalGuardAsyncResultResponseBody.d.ts +301 -0
- package/dist/models/MultiModalGuardAsyncResultResponseBody.js +326 -0
- package/dist/models/MultiModalGuardAsyncResultResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +16 -0
- package/dist/models/model.js +36 -4
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +92 -0
- package/src/models/MultiModalGuardAsyncRequest.ts +38 -0
- package/src/models/MultiModalGuardAsyncResponse.ts +40 -0
- package/src/models/MultiModalGuardAsyncResponseBody.ts +88 -0
- package/src/models/MultiModalGuardAsyncResultRequest.ts +40 -0
- package/src/models/MultiModalGuardAsyncResultResponse.ts +40 -0
- package/src/models/MultiModalGuardAsyncResultResponseBody.ts +501 -0
- package/src/models/model.ts +16 -0
|
@@ -0,0 +1,60 @@
|
|
|
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.MultiModalGuardAsyncResultRequest = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class MultiModalGuardAsyncResultRequest extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
service: 'Service',
|
|
43
|
+
serviceParameters: 'ServiceParameters',
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
static types() {
|
|
47
|
+
return {
|
|
48
|
+
service: 'string',
|
|
49
|
+
serviceParameters: 'string',
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
validate() {
|
|
53
|
+
super.validate();
|
|
54
|
+
}
|
|
55
|
+
constructor(map) {
|
|
56
|
+
super(map);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
exports.MultiModalGuardAsyncResultRequest = MultiModalGuardAsyncResultRequest;
|
|
60
|
+
//# sourceMappingURL=MultiModalGuardAsyncResultRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MultiModalGuardAsyncResultRequest.js","sourceRoot":"","sources":["../../src/models/MultiModalGuardAsyncResultRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,iCAAkC,SAAQ,KAAK,CAAC,KAAK;IAahE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,iBAAiB,EAAE,mBAAmB;SACvC,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,QAAQ;YACjB,iBAAiB,EAAE,QAAQ;SAC5B,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;AAlCD,8EAkCC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { MultiModalGuardAsyncResultResponseBody } from "./MultiModalGuardAsyncResultResponseBody";
|
|
3
|
+
export declare class MultiModalGuardAsyncResultResponse extends $dara.Model {
|
|
4
|
+
headers?: {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
};
|
|
7
|
+
statusCode?: number;
|
|
8
|
+
body?: MultiModalGuardAsyncResultResponseBody;
|
|
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.MultiModalGuardAsyncResultResponse = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const MultiModalGuardAsyncResultResponseBody_1 = require("./MultiModalGuardAsyncResultResponseBody");
|
|
40
|
+
class MultiModalGuardAsyncResultResponse 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: MultiModalGuardAsyncResultResponseBody_1.MultiModalGuardAsyncResultResponseBody,
|
|
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.MultiModalGuardAsyncResultResponse = MultiModalGuardAsyncResultResponse;
|
|
69
|
+
//# sourceMappingURL=MultiModalGuardAsyncResultResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MultiModalGuardAsyncResultResponse.js","sourceRoot":"","sources":["../../src/models/MultiModalGuardAsyncResultResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,qGAAkG;AAGlG,MAAa,kCAAmC,SAAQ,KAAK,CAAC,KAAK;IAIjE,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,+EAAsC;SAC7C,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,gFAiCC"}
|
|
@@ -0,0 +1,301 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class MultiModalGuardAsyncResultResponseBodyDataAudioResultSliceDetailsDetailResult extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* 90
|
|
6
|
+
*/
|
|
7
|
+
confidence?: number;
|
|
8
|
+
description?: string;
|
|
9
|
+
/**
|
|
10
|
+
* @example
|
|
11
|
+
* {}
|
|
12
|
+
*/
|
|
13
|
+
ext?: any;
|
|
14
|
+
/**
|
|
15
|
+
* @example
|
|
16
|
+
* drug
|
|
17
|
+
*/
|
|
18
|
+
label?: string;
|
|
19
|
+
/**
|
|
20
|
+
* @example
|
|
21
|
+
* high
|
|
22
|
+
*/
|
|
23
|
+
level?: string;
|
|
24
|
+
static names(): {
|
|
25
|
+
[key: string]: string;
|
|
26
|
+
};
|
|
27
|
+
static types(): {
|
|
28
|
+
[key: string]: any;
|
|
29
|
+
};
|
|
30
|
+
validate(): void;
|
|
31
|
+
constructor(map?: {
|
|
32
|
+
[key: string]: any;
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
export declare class MultiModalGuardAsyncResultResponseBodyDataAudioResultSliceDetailsDetail extends $dara.Model {
|
|
36
|
+
/**
|
|
37
|
+
* @example
|
|
38
|
+
* high
|
|
39
|
+
*/
|
|
40
|
+
level?: string;
|
|
41
|
+
result?: MultiModalGuardAsyncResultResponseBodyDataAudioResultSliceDetailsDetailResult[];
|
|
42
|
+
/**
|
|
43
|
+
* @example
|
|
44
|
+
* block
|
|
45
|
+
*/
|
|
46
|
+
suggestion?: string;
|
|
47
|
+
/**
|
|
48
|
+
* @example
|
|
49
|
+
* contentModeration
|
|
50
|
+
*/
|
|
51
|
+
type?: string;
|
|
52
|
+
static names(): {
|
|
53
|
+
[key: string]: string;
|
|
54
|
+
};
|
|
55
|
+
static types(): {
|
|
56
|
+
[key: string]: any;
|
|
57
|
+
};
|
|
58
|
+
validate(): void;
|
|
59
|
+
constructor(map?: {
|
|
60
|
+
[key: string]: any;
|
|
61
|
+
});
|
|
62
|
+
}
|
|
63
|
+
export declare class MultiModalGuardAsyncResultResponseBodyDataAudioResultSliceDetails extends $dara.Model {
|
|
64
|
+
detail?: MultiModalGuardAsyncResultResponseBodyDataAudioResultSliceDetailsDetail[];
|
|
65
|
+
/**
|
|
66
|
+
* @example
|
|
67
|
+
* 30
|
|
68
|
+
*/
|
|
69
|
+
endTime?: number;
|
|
70
|
+
/**
|
|
71
|
+
* @example
|
|
72
|
+
* 0
|
|
73
|
+
*/
|
|
74
|
+
startTime?: number;
|
|
75
|
+
/**
|
|
76
|
+
* @example
|
|
77
|
+
* block
|
|
78
|
+
*/
|
|
79
|
+
suggestion?: string;
|
|
80
|
+
text?: string;
|
|
81
|
+
/**
|
|
82
|
+
* @example
|
|
83
|
+
* http://xxxx.abc.wav
|
|
84
|
+
*/
|
|
85
|
+
url?: string;
|
|
86
|
+
static names(): {
|
|
87
|
+
[key: string]: string;
|
|
88
|
+
};
|
|
89
|
+
static types(): {
|
|
90
|
+
[key: string]: any;
|
|
91
|
+
};
|
|
92
|
+
validate(): void;
|
|
93
|
+
constructor(map?: {
|
|
94
|
+
[key: string]: any;
|
|
95
|
+
});
|
|
96
|
+
}
|
|
97
|
+
export declare class MultiModalGuardAsyncResultResponseBodyDataAudioResult extends $dara.Model {
|
|
98
|
+
sliceDetails?: MultiModalGuardAsyncResultResponseBodyDataAudioResultSliceDetails[];
|
|
99
|
+
/**
|
|
100
|
+
* @example
|
|
101
|
+
* 2
|
|
102
|
+
*/
|
|
103
|
+
sliceNum?: number;
|
|
104
|
+
/**
|
|
105
|
+
* @example
|
|
106
|
+
* pass
|
|
107
|
+
*/
|
|
108
|
+
suggestion?: string;
|
|
109
|
+
static names(): {
|
|
110
|
+
[key: string]: string;
|
|
111
|
+
};
|
|
112
|
+
static types(): {
|
|
113
|
+
[key: string]: any;
|
|
114
|
+
};
|
|
115
|
+
validate(): void;
|
|
116
|
+
constructor(map?: {
|
|
117
|
+
[key: string]: any;
|
|
118
|
+
});
|
|
119
|
+
}
|
|
120
|
+
export declare class MultiModalGuardAsyncResultResponseBodyDataFrameResultFramesDetailResult extends $dara.Model {
|
|
121
|
+
/**
|
|
122
|
+
* @example
|
|
123
|
+
* 80
|
|
124
|
+
*/
|
|
125
|
+
confidence?: number;
|
|
126
|
+
description?: string;
|
|
127
|
+
/**
|
|
128
|
+
* @example
|
|
129
|
+
* {}
|
|
130
|
+
*/
|
|
131
|
+
ext?: any;
|
|
132
|
+
/**
|
|
133
|
+
* @example
|
|
134
|
+
* ad
|
|
135
|
+
*/
|
|
136
|
+
label?: string;
|
|
137
|
+
/**
|
|
138
|
+
* @example
|
|
139
|
+
* loose
|
|
140
|
+
*/
|
|
141
|
+
level?: string;
|
|
142
|
+
static names(): {
|
|
143
|
+
[key: string]: string;
|
|
144
|
+
};
|
|
145
|
+
static types(): {
|
|
146
|
+
[key: string]: any;
|
|
147
|
+
};
|
|
148
|
+
validate(): void;
|
|
149
|
+
constructor(map?: {
|
|
150
|
+
[key: string]: any;
|
|
151
|
+
});
|
|
152
|
+
}
|
|
153
|
+
export declare class MultiModalGuardAsyncResultResponseBodyDataFrameResultFramesDetail extends $dara.Model {
|
|
154
|
+
/**
|
|
155
|
+
* @example
|
|
156
|
+
* low
|
|
157
|
+
*/
|
|
158
|
+
level?: string;
|
|
159
|
+
result?: MultiModalGuardAsyncResultResponseBodyDataFrameResultFramesDetailResult[];
|
|
160
|
+
/**
|
|
161
|
+
* @example
|
|
162
|
+
* watch
|
|
163
|
+
*/
|
|
164
|
+
suggestion?: string;
|
|
165
|
+
/**
|
|
166
|
+
* @example
|
|
167
|
+
* contentModeration
|
|
168
|
+
*/
|
|
169
|
+
type?: string;
|
|
170
|
+
static names(): {
|
|
171
|
+
[key: string]: string;
|
|
172
|
+
};
|
|
173
|
+
static types(): {
|
|
174
|
+
[key: string]: any;
|
|
175
|
+
};
|
|
176
|
+
validate(): void;
|
|
177
|
+
constructor(map?: {
|
|
178
|
+
[key: string]: any;
|
|
179
|
+
});
|
|
180
|
+
}
|
|
181
|
+
export declare class MultiModalGuardAsyncResultResponseBodyDataFrameResultFrames extends $dara.Model {
|
|
182
|
+
detail?: MultiModalGuardAsyncResultResponseBodyDataFrameResultFramesDetail[];
|
|
183
|
+
/**
|
|
184
|
+
* @example
|
|
185
|
+
* 1.5
|
|
186
|
+
*/
|
|
187
|
+
offset?: number;
|
|
188
|
+
/**
|
|
189
|
+
* @example
|
|
190
|
+
* block
|
|
191
|
+
*/
|
|
192
|
+
suggestion?: string;
|
|
193
|
+
/**
|
|
194
|
+
* @example
|
|
195
|
+
* 1684559739000
|
|
196
|
+
*/
|
|
197
|
+
timestamp?: number;
|
|
198
|
+
/**
|
|
199
|
+
* @example
|
|
200
|
+
* https://xxx.jpeg
|
|
201
|
+
*/
|
|
202
|
+
url?: string;
|
|
203
|
+
static names(): {
|
|
204
|
+
[key: string]: string;
|
|
205
|
+
};
|
|
206
|
+
static types(): {
|
|
207
|
+
[key: string]: any;
|
|
208
|
+
};
|
|
209
|
+
validate(): void;
|
|
210
|
+
constructor(map?: {
|
|
211
|
+
[key: string]: any;
|
|
212
|
+
});
|
|
213
|
+
}
|
|
214
|
+
export declare class MultiModalGuardAsyncResultResponseBodyDataFrameResult extends $dara.Model {
|
|
215
|
+
frames?: MultiModalGuardAsyncResultResponseBodyDataFrameResultFrames[];
|
|
216
|
+
/**
|
|
217
|
+
* @example
|
|
218
|
+
* 2
|
|
219
|
+
*/
|
|
220
|
+
sliceNum?: number;
|
|
221
|
+
/**
|
|
222
|
+
* @example
|
|
223
|
+
* pass
|
|
224
|
+
*/
|
|
225
|
+
suggestion?: string;
|
|
226
|
+
static names(): {
|
|
227
|
+
[key: string]: string;
|
|
228
|
+
};
|
|
229
|
+
static types(): {
|
|
230
|
+
[key: string]: any;
|
|
231
|
+
};
|
|
232
|
+
validate(): void;
|
|
233
|
+
constructor(map?: {
|
|
234
|
+
[key: string]: any;
|
|
235
|
+
});
|
|
236
|
+
}
|
|
237
|
+
export declare class MultiModalGuardAsyncResultResponseBodyData extends $dara.Model {
|
|
238
|
+
audioResult?: MultiModalGuardAsyncResultResponseBodyDataAudioResult;
|
|
239
|
+
/**
|
|
240
|
+
* @example
|
|
241
|
+
* data1234
|
|
242
|
+
*/
|
|
243
|
+
dataId?: string;
|
|
244
|
+
frameResult?: MultiModalGuardAsyncResultResponseBodyDataFrameResult;
|
|
245
|
+
/**
|
|
246
|
+
* @example
|
|
247
|
+
* liveId
|
|
248
|
+
*/
|
|
249
|
+
liveId?: string;
|
|
250
|
+
/**
|
|
251
|
+
* @example
|
|
252
|
+
* pass
|
|
253
|
+
*/
|
|
254
|
+
suggestion?: string;
|
|
255
|
+
/**
|
|
256
|
+
* @example
|
|
257
|
+
* vi_f_xxx
|
|
258
|
+
*/
|
|
259
|
+
taskId?: string;
|
|
260
|
+
static names(): {
|
|
261
|
+
[key: string]: string;
|
|
262
|
+
};
|
|
263
|
+
static types(): {
|
|
264
|
+
[key: string]: any;
|
|
265
|
+
};
|
|
266
|
+
validate(): void;
|
|
267
|
+
constructor(map?: {
|
|
268
|
+
[key: string]: any;
|
|
269
|
+
});
|
|
270
|
+
}
|
|
271
|
+
export declare class MultiModalGuardAsyncResultResponseBody extends $dara.Model {
|
|
272
|
+
/**
|
|
273
|
+
* @example
|
|
274
|
+
* 200
|
|
275
|
+
*/
|
|
276
|
+
code?: number;
|
|
277
|
+
data?: MultiModalGuardAsyncResultResponseBodyData;
|
|
278
|
+
/**
|
|
279
|
+
* @example
|
|
280
|
+
* SUCCESS
|
|
281
|
+
*/
|
|
282
|
+
message?: string;
|
|
283
|
+
/**
|
|
284
|
+
* @remarks
|
|
285
|
+
* Id of the request
|
|
286
|
+
*
|
|
287
|
+
* @example
|
|
288
|
+
* AAAAAA-BBBB-CCCCC-DDDD-EEEEEEEE****
|
|
289
|
+
*/
|
|
290
|
+
requestId?: string;
|
|
291
|
+
static names(): {
|
|
292
|
+
[key: string]: string;
|
|
293
|
+
};
|
|
294
|
+
static types(): {
|
|
295
|
+
[key: string]: any;
|
|
296
|
+
};
|
|
297
|
+
validate(): void;
|
|
298
|
+
constructor(map?: {
|
|
299
|
+
[key: string]: any;
|
|
300
|
+
});
|
|
301
|
+
}
|