@alicloud/dms-enterprise20181101 2.6.1 → 2.8.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.
Files changed (69) hide show
  1. package/dist/client.d.ts +84 -0
  2. package/dist/client.js +204 -0
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/ColumnKnowledgeVo.d.ts +31 -0
  5. package/dist/models/ColumnKnowledgeVo.js +92 -0
  6. package/dist/models/ColumnKnowledgeVo.js.map +1 -0
  7. package/dist/models/GetTableColumnListRequest.d.ts +29 -0
  8. package/dist/models/GetTableColumnListRequest.js +60 -0
  9. package/dist/models/GetTableColumnListRequest.js.map +1 -0
  10. package/dist/models/GetTableColumnListResponse.d.ts +19 -0
  11. package/dist/models/GetTableColumnListResponse.js +69 -0
  12. package/dist/models/GetTableColumnListResponse.js.map +1 -0
  13. package/dist/models/GetTableColumnListResponseBody.d.ts +38 -0
  14. package/dist/models/GetTableColumnListResponseBody.js +70 -0
  15. package/dist/models/GetTableColumnListResponseBody.js.map +1 -0
  16. package/dist/models/GetTableInstructionsRequest.d.ts +29 -0
  17. package/dist/models/GetTableInstructionsRequest.js +60 -0
  18. package/dist/models/GetTableInstructionsRequest.js.map +1 -0
  19. package/dist/models/GetTableInstructionsResponse.d.ts +19 -0
  20. package/dist/models/GetTableInstructionsResponse.js +69 -0
  21. package/dist/models/GetTableInstructionsResponse.js.map +1 -0
  22. package/dist/models/GetTableInstructionsResponseBody.d.ts +45 -0
  23. package/dist/models/GetTableInstructionsResponseBody.js +70 -0
  24. package/dist/models/GetTableInstructionsResponseBody.js.map +1 -0
  25. package/dist/models/GetTableKnowledgeDetailsRequest.d.ts +29 -0
  26. package/dist/models/GetTableKnowledgeDetailsRequest.js +60 -0
  27. package/dist/models/GetTableKnowledgeDetailsRequest.js.map +1 -0
  28. package/dist/models/GetTableKnowledgeDetailsResponse.d.ts +19 -0
  29. package/dist/models/GetTableKnowledgeDetailsResponse.js +69 -0
  30. package/dist/models/GetTableKnowledgeDetailsResponse.js.map +1 -0
  31. package/dist/models/GetTableKnowledgeDetailsResponseBody.d.ts +45 -0
  32. package/dist/models/GetTableKnowledgeDetailsResponseBody.js +70 -0
  33. package/dist/models/GetTableKnowledgeDetailsResponseBody.js.map +1 -0
  34. package/dist/models/SearchTableAssetKnowledgeRequest.d.ts +49 -0
  35. package/dist/models/SearchTableAssetKnowledgeRequest.js +68 -0
  36. package/dist/models/SearchTableAssetKnowledgeRequest.js.map +1 -0
  37. package/dist/models/SearchTableAssetKnowledgeResponse.d.ts +19 -0
  38. package/dist/models/SearchTableAssetKnowledgeResponse.js +69 -0
  39. package/dist/models/SearchTableAssetKnowledgeResponse.js.map +1 -0
  40. package/dist/models/SearchTableAssetKnowledgeResponseBody.d.ts +56 -0
  41. package/dist/models/SearchTableAssetKnowledgeResponseBody.js +94 -0
  42. package/dist/models/SearchTableAssetKnowledgeResponseBody.js.map +1 -0
  43. package/dist/models/TableInstructionsVo.d.ts +20 -0
  44. package/dist/models/TableInstructionsVo.js +70 -0
  45. package/dist/models/TableInstructionsVo.js.map +1 -0
  46. package/dist/models/TableKnowledgeVo.d.ts +34 -0
  47. package/dist/models/TableKnowledgeVo.js +98 -0
  48. package/dist/models/TableKnowledgeVo.js.map +1 -0
  49. package/dist/models/model.d.ts +16 -0
  50. package/dist/models/model.js +54 -22
  51. package/dist/models/model.js.map +1 -1
  52. package/package.json +1 -1
  53. package/src/client.ts +224 -0
  54. package/src/models/ColumnKnowledgeVo.ts +78 -0
  55. package/src/models/GetTableColumnListRequest.ts +44 -0
  56. package/src/models/GetTableColumnListResponse.ts +40 -0
  57. package/src/models/GetTableColumnListResponseBody.ts +62 -0
  58. package/src/models/GetTableInstructionsRequest.ts +44 -0
  59. package/src/models/GetTableInstructionsResponse.ts +40 -0
  60. package/src/models/GetTableInstructionsResponseBody.ts +69 -0
  61. package/src/models/GetTableKnowledgeDetailsRequest.ts +44 -0
  62. package/src/models/GetTableKnowledgeDetailsResponse.ts +40 -0
  63. package/src/models/GetTableKnowledgeDetailsResponseBody.ts +69 -0
  64. package/src/models/SearchTableAssetKnowledgeRequest.ts +72 -0
  65. package/src/models/SearchTableAssetKnowledgeResponse.ts +40 -0
  66. package/src/models/SearchTableAssetKnowledgeResponseBody.ts +95 -0
  67. package/src/models/TableInstructionsVo.ts +45 -0
  68. package/src/models/TableKnowledgeVo.ts +87 -0
  69. package/src/models/model.ts +16 -0
@@ -0,0 +1,40 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { GetTableColumnListResponseBody } from "./GetTableColumnListResponseBody";
4
+
5
+
6
+ export class GetTableColumnListResponse extends $dara.Model {
7
+ headers?: { [key: string]: string };
8
+ statusCode?: number;
9
+ body?: GetTableColumnListResponseBody;
10
+ static names(): { [key: string]: string } {
11
+ return {
12
+ headers: 'headers',
13
+ statusCode: 'statusCode',
14
+ body: 'body',
15
+ };
16
+ }
17
+
18
+ static types(): { [key: string]: any } {
19
+ return {
20
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
21
+ statusCode: 'number',
22
+ body: GetTableColumnListResponseBody,
23
+ };
24
+ }
25
+
26
+ validate() {
27
+ if(this.headers) {
28
+ $dara.Model.validateMap(this.headers);
29
+ }
30
+ if(this.body && typeof (this.body as any).validate === 'function') {
31
+ (this.body as any).validate();
32
+ }
33
+ super.validate();
34
+ }
35
+
36
+ constructor(map?: { [key: string]: any }) {
37
+ super(map);
38
+ }
39
+ }
40
+
@@ -0,0 +1,62 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { ColumnKnowledgeVO } from "./ColumnKnowledgeVo";
4
+
5
+
6
+ export class GetTableColumnListResponseBody extends $dara.Model {
7
+ data?: ColumnKnowledgeVO[];
8
+ /**
9
+ * @example
10
+ * UnknownError
11
+ */
12
+ errorCode?: string;
13
+ /**
14
+ * @example
15
+ * UnknownError
16
+ */
17
+ errorMessage?: string;
18
+ /**
19
+ * @remarks
20
+ * Id of the request
21
+ *
22
+ * @example
23
+ * 0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
24
+ */
25
+ requestId?: string;
26
+ /**
27
+ * @example
28
+ * true
29
+ */
30
+ success?: boolean;
31
+ static names(): { [key: string]: string } {
32
+ return {
33
+ data: 'Data',
34
+ errorCode: 'ErrorCode',
35
+ errorMessage: 'ErrorMessage',
36
+ requestId: 'RequestId',
37
+ success: 'Success',
38
+ };
39
+ }
40
+
41
+ static types(): { [key: string]: any } {
42
+ return {
43
+ data: { 'type': 'array', 'itemType': ColumnKnowledgeVO },
44
+ errorCode: 'string',
45
+ errorMessage: 'string',
46
+ requestId: 'string',
47
+ success: 'boolean',
48
+ };
49
+ }
50
+
51
+ validate() {
52
+ if(Array.isArray(this.data)) {
53
+ $dara.Model.validateArray(this.data);
54
+ }
55
+ super.validate();
56
+ }
57
+
58
+ constructor(map?: { [key: string]: any }) {
59
+ super(map);
60
+ }
61
+ }
62
+
@@ -0,0 +1,44 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class GetTableInstructionsRequest extends $dara.Model {
6
+ /**
7
+ * @remarks
8
+ * This parameter is required.
9
+ *
10
+ * @example
11
+ * 1***
12
+ */
13
+ dbId?: number;
14
+ /**
15
+ * @remarks
16
+ * This parameter is required.
17
+ *
18
+ * @example
19
+ * order_info
20
+ */
21
+ tableName?: string;
22
+ static names(): { [key: string]: string } {
23
+ return {
24
+ dbId: 'DbId',
25
+ tableName: 'TableName',
26
+ };
27
+ }
28
+
29
+ static types(): { [key: string]: any } {
30
+ return {
31
+ dbId: 'number',
32
+ tableName: 'string',
33
+ };
34
+ }
35
+
36
+ validate() {
37
+ super.validate();
38
+ }
39
+
40
+ constructor(map?: { [key: string]: any }) {
41
+ super(map);
42
+ }
43
+ }
44
+
@@ -0,0 +1,40 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { GetTableInstructionsResponseBody } from "./GetTableInstructionsResponseBody";
4
+
5
+
6
+ export class GetTableInstructionsResponse extends $dara.Model {
7
+ headers?: { [key: string]: string };
8
+ statusCode?: number;
9
+ body?: GetTableInstructionsResponseBody;
10
+ static names(): { [key: string]: string } {
11
+ return {
12
+ headers: 'headers',
13
+ statusCode: 'statusCode',
14
+ body: 'body',
15
+ };
16
+ }
17
+
18
+ static types(): { [key: string]: any } {
19
+ return {
20
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
21
+ statusCode: 'number',
22
+ body: GetTableInstructionsResponseBody,
23
+ };
24
+ }
25
+
26
+ validate() {
27
+ if(this.headers) {
28
+ $dara.Model.validateMap(this.headers);
29
+ }
30
+ if(this.body && typeof (this.body as any).validate === 'function') {
31
+ (this.body as any).validate();
32
+ }
33
+ super.validate();
34
+ }
35
+
36
+ constructor(map?: { [key: string]: any }) {
37
+ super(map);
38
+ }
39
+ }
40
+
@@ -0,0 +1,69 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { TableInstructionsVO } from "./TableInstructionsVo";
4
+
5
+
6
+ export class GetTableInstructionsResponseBody extends $dara.Model {
7
+ /**
8
+ * @remarks
9
+ * This parameter is required.
10
+ *
11
+ * @example
12
+ * 1001
13
+ */
14
+ data?: TableInstructionsVO;
15
+ /**
16
+ * @example
17
+ * UnknownError
18
+ */
19
+ errorCode?: string;
20
+ /**
21
+ * @example
22
+ * UnknownError
23
+ */
24
+ errorMessage?: string;
25
+ /**
26
+ * @remarks
27
+ * Id of the request
28
+ *
29
+ * @example
30
+ * 0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
31
+ */
32
+ requestId?: string;
33
+ /**
34
+ * @example
35
+ * true
36
+ */
37
+ success?: boolean;
38
+ static names(): { [key: string]: string } {
39
+ return {
40
+ data: 'Data',
41
+ errorCode: 'ErrorCode',
42
+ errorMessage: 'ErrorMessage',
43
+ requestId: 'RequestId',
44
+ success: 'Success',
45
+ };
46
+ }
47
+
48
+ static types(): { [key: string]: any } {
49
+ return {
50
+ data: TableInstructionsVO,
51
+ errorCode: 'string',
52
+ errorMessage: 'string',
53
+ requestId: 'string',
54
+ success: 'boolean',
55
+ };
56
+ }
57
+
58
+ validate() {
59
+ if(this.data && typeof (this.data as any).validate === 'function') {
60
+ (this.data as any).validate();
61
+ }
62
+ super.validate();
63
+ }
64
+
65
+ constructor(map?: { [key: string]: any }) {
66
+ super(map);
67
+ }
68
+ }
69
+
@@ -0,0 +1,44 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class GetTableKnowledgeDetailsRequest extends $dara.Model {
6
+ /**
7
+ * @remarks
8
+ * This parameter is required.
9
+ *
10
+ * @example
11
+ * 1***
12
+ */
13
+ dbId?: number;
14
+ /**
15
+ * @remarks
16
+ * This parameter is required.
17
+ *
18
+ * @example
19
+ * order_info
20
+ */
21
+ tableName?: string;
22
+ static names(): { [key: string]: string } {
23
+ return {
24
+ dbId: 'DbId',
25
+ tableName: 'TableName',
26
+ };
27
+ }
28
+
29
+ static types(): { [key: string]: any } {
30
+ return {
31
+ dbId: 'number',
32
+ tableName: 'string',
33
+ };
34
+ }
35
+
36
+ validate() {
37
+ super.validate();
38
+ }
39
+
40
+ constructor(map?: { [key: string]: any }) {
41
+ super(map);
42
+ }
43
+ }
44
+
@@ -0,0 +1,40 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { GetTableKnowledgeDetailsResponseBody } from "./GetTableKnowledgeDetailsResponseBody";
4
+
5
+
6
+ export class GetTableKnowledgeDetailsResponse extends $dara.Model {
7
+ headers?: { [key: string]: string };
8
+ statusCode?: number;
9
+ body?: GetTableKnowledgeDetailsResponseBody;
10
+ static names(): { [key: string]: string } {
11
+ return {
12
+ headers: 'headers',
13
+ statusCode: 'statusCode',
14
+ body: 'body',
15
+ };
16
+ }
17
+
18
+ static types(): { [key: string]: any } {
19
+ return {
20
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
21
+ statusCode: 'number',
22
+ body: GetTableKnowledgeDetailsResponseBody,
23
+ };
24
+ }
25
+
26
+ validate() {
27
+ if(this.headers) {
28
+ $dara.Model.validateMap(this.headers);
29
+ }
30
+ if(this.body && typeof (this.body as any).validate === 'function') {
31
+ (this.body as any).validate();
32
+ }
33
+ super.validate();
34
+ }
35
+
36
+ constructor(map?: { [key: string]: any }) {
37
+ super(map);
38
+ }
39
+ }
40
+
@@ -0,0 +1,69 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { TableKnowledgeVO } from "./TableKnowledgeVo";
4
+
5
+
6
+ export class GetTableKnowledgeDetailsResponseBody extends $dara.Model {
7
+ /**
8
+ * @remarks
9
+ * This parameter is required.
10
+ *
11
+ * @example
12
+ * true
13
+ */
14
+ data?: TableKnowledgeVO;
15
+ /**
16
+ * @example
17
+ * UnknownError
18
+ */
19
+ errorCode?: string;
20
+ /**
21
+ * @example
22
+ * UnknownError
23
+ */
24
+ errorMessage?: string;
25
+ /**
26
+ * @remarks
27
+ * Id of the request
28
+ *
29
+ * @example
30
+ * 0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
31
+ */
32
+ requestId?: string;
33
+ /**
34
+ * @example
35
+ * true
36
+ */
37
+ success?: boolean;
38
+ static names(): { [key: string]: string } {
39
+ return {
40
+ data: 'Data',
41
+ errorCode: 'ErrorCode',
42
+ errorMessage: 'ErrorMessage',
43
+ requestId: 'RequestId',
44
+ success: 'Success',
45
+ };
46
+ }
47
+
48
+ static types(): { [key: string]: any } {
49
+ return {
50
+ data: TableKnowledgeVO,
51
+ errorCode: 'string',
52
+ errorMessage: 'string',
53
+ requestId: 'string',
54
+ success: 'boolean',
55
+ };
56
+ }
57
+
58
+ validate() {
59
+ if(this.data && typeof (this.data as any).validate === 'function') {
60
+ (this.data as any).validate();
61
+ }
62
+ super.validate();
63
+ }
64
+
65
+ constructor(map?: { [key: string]: any }) {
66
+ super(map);
67
+ }
68
+ }
69
+
@@ -0,0 +1,72 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class SearchTableAssetKnowledgeRequest extends $dara.Model {
6
+ /**
7
+ * @remarks
8
+ * This parameter is required.
9
+ *
10
+ * @example
11
+ * 1***
12
+ */
13
+ dbId?: number;
14
+ /**
15
+ * @example
16
+ * 0
17
+ */
18
+ offset?: number;
19
+ /**
20
+ * @example
21
+ * 订单
22
+ */
23
+ searchKey?: string;
24
+ /**
25
+ * @example
26
+ * TABLE
27
+ */
28
+ showType?: string;
29
+ /**
30
+ * @example
31
+ * 20
32
+ */
33
+ size?: number;
34
+ /**
35
+ * @remarks
36
+ * This parameter is required.
37
+ *
38
+ * @example
39
+ * order_info
40
+ */
41
+ tableName?: string;
42
+ static names(): { [key: string]: string } {
43
+ return {
44
+ dbId: 'DbId',
45
+ offset: 'Offset',
46
+ searchKey: 'SearchKey',
47
+ showType: 'ShowType',
48
+ size: 'Size',
49
+ tableName: 'TableName',
50
+ };
51
+ }
52
+
53
+ static types(): { [key: string]: any } {
54
+ return {
55
+ dbId: 'number',
56
+ offset: 'number',
57
+ searchKey: 'string',
58
+ showType: 'string',
59
+ size: 'number',
60
+ tableName: 'string',
61
+ };
62
+ }
63
+
64
+ validate() {
65
+ super.validate();
66
+ }
67
+
68
+ constructor(map?: { [key: string]: any }) {
69
+ super(map);
70
+ }
71
+ }
72
+
@@ -0,0 +1,40 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { SearchTableAssetKnowledgeResponseBody } from "./SearchTableAssetKnowledgeResponseBody";
4
+
5
+
6
+ export class SearchTableAssetKnowledgeResponse extends $dara.Model {
7
+ headers?: { [key: string]: string };
8
+ statusCode?: number;
9
+ body?: SearchTableAssetKnowledgeResponseBody;
10
+ static names(): { [key: string]: string } {
11
+ return {
12
+ headers: 'headers',
13
+ statusCode: 'statusCode',
14
+ body: 'body',
15
+ };
16
+ }
17
+
18
+ static types(): { [key: string]: any } {
19
+ return {
20
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
21
+ statusCode: 'number',
22
+ body: SearchTableAssetKnowledgeResponseBody,
23
+ };
24
+ }
25
+
26
+ validate() {
27
+ if(this.headers) {
28
+ $dara.Model.validateMap(this.headers);
29
+ }
30
+ if(this.body && typeof (this.body as any).validate === 'function') {
31
+ (this.body as any).validate();
32
+ }
33
+ super.validate();
34
+ }
35
+
36
+ constructor(map?: { [key: string]: any }) {
37
+ super(map);
38
+ }
39
+ }
40
+
@@ -0,0 +1,95 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { KnowledgeBaseVO } from "./KnowledgeBaseVo";
4
+
5
+
6
+ export class SearchTableAssetKnowledgeResponseBodyData extends $dara.Model {
7
+ items?: KnowledgeBaseVO[];
8
+ /**
9
+ * @example
10
+ * 100
11
+ */
12
+ totalCount?: number;
13
+ static names(): { [key: string]: string } {
14
+ return {
15
+ items: 'Items',
16
+ totalCount: 'TotalCount',
17
+ };
18
+ }
19
+
20
+ static types(): { [key: string]: any } {
21
+ return {
22
+ items: { 'type': 'array', 'itemType': KnowledgeBaseVO },
23
+ totalCount: 'number',
24
+ };
25
+ }
26
+
27
+ validate() {
28
+ if(Array.isArray(this.items)) {
29
+ $dara.Model.validateArray(this.items);
30
+ }
31
+ super.validate();
32
+ }
33
+
34
+ constructor(map?: { [key: string]: any }) {
35
+ super(map);
36
+ }
37
+ }
38
+
39
+ export class SearchTableAssetKnowledgeResponseBody extends $dara.Model {
40
+ data?: SearchTableAssetKnowledgeResponseBodyData;
41
+ /**
42
+ * @example
43
+ * UnknownError
44
+ */
45
+ errorCode?: string;
46
+ /**
47
+ * @example
48
+ * UnknownError
49
+ */
50
+ errorMessage?: string;
51
+ /**
52
+ * @remarks
53
+ * Id of the request
54
+ *
55
+ * @example
56
+ * 0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
57
+ */
58
+ requestId?: string;
59
+ /**
60
+ * @example
61
+ * true
62
+ */
63
+ success?: boolean;
64
+ static names(): { [key: string]: string } {
65
+ return {
66
+ data: 'Data',
67
+ errorCode: 'ErrorCode',
68
+ errorMessage: 'ErrorMessage',
69
+ requestId: 'RequestId',
70
+ success: 'Success',
71
+ };
72
+ }
73
+
74
+ static types(): { [key: string]: any } {
75
+ return {
76
+ data: SearchTableAssetKnowledgeResponseBodyData,
77
+ errorCode: 'string',
78
+ errorMessage: 'string',
79
+ requestId: 'string',
80
+ success: 'boolean',
81
+ };
82
+ }
83
+
84
+ validate() {
85
+ if(this.data && typeof (this.data as any).validate === 'function') {
86
+ (this.data as any).validate();
87
+ }
88
+ super.validate();
89
+ }
90
+
91
+ constructor(map?: { [key: string]: any }) {
92
+ super(map);
93
+ }
94
+ }
95
+
@@ -0,0 +1,45 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class TableInstructionsVO extends $dara.Model {
6
+ assetCreatedGmt?: string;
7
+ assetDescription?: string;
8
+ assetModifiedGmt?: string;
9
+ dbId?: number;
10
+ dbType?: string;
11
+ summary?: string;
12
+ tableName?: string;
13
+ static names(): { [key: string]: string } {
14
+ return {
15
+ assetCreatedGmt: 'AssetCreatedGmt',
16
+ assetDescription: 'AssetDescription',
17
+ assetModifiedGmt: 'AssetModifiedGmt',
18
+ dbId: 'DbId',
19
+ dbType: 'DbType',
20
+ summary: 'Summary',
21
+ tableName: 'TableName',
22
+ };
23
+ }
24
+
25
+ static types(): { [key: string]: any } {
26
+ return {
27
+ assetCreatedGmt: 'string',
28
+ assetDescription: 'string',
29
+ assetModifiedGmt: 'string',
30
+ dbId: 'number',
31
+ dbType: 'string',
32
+ summary: 'string',
33
+ tableName: 'string',
34
+ };
35
+ }
36
+
37
+ validate() {
38
+ super.validate();
39
+ }
40
+
41
+ constructor(map?: { [key: string]: any }) {
42
+ super(map);
43
+ }
44
+ }
45
+