@alicloud/ecd20200930 3.4.1 → 3.4.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/ecd20200930",
3
- "version": "3.4.1",
3
+ "version": "3.4.3",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -294,15 +294,21 @@ export class AddDevicesRequest extends $tea.Model {
294
294
  }
295
295
 
296
296
  export class AddDevicesResponseBody extends $tea.Model {
297
+ code?: string;
298
+ message?: string;
297
299
  requestId?: string;
298
300
  static names(): { [key: string]: string } {
299
301
  return {
302
+ code: 'Code',
303
+ message: 'Message',
300
304
  requestId: 'RequestId',
301
305
  };
302
306
  }
303
307
 
304
308
  static types(): { [key: string]: any } {
305
309
  return {
310
+ code: 'string',
311
+ message: 'string',
306
312
  requestId: 'string',
307
313
  };
308
314
  }