This repository was archived by the owner on Nov 18, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Name | Type | Description | Notes
77** uuid** | ** String** | |
88** type** | ** String** | |
99** attributes** | ** Number** | | [ optional]
10- ** materialList** | ** [ String ] ** | | [ optional] [ readonly ]
10+ ** materialList** | ** [ Number ] ** | | [ optional]
1111** psets** | ** [ Number] ** | | [ optional]
1212** classifications** | ** [ Number] ** | | [ optional]
1313** layers** | ** [ Number] ** | | [ optional]
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ class RawElement {
6161 obj [ 'attributes' ] = ApiClient . convertToType ( data [ 'attributes' ] , 'Number' ) ;
6262 }
6363 if ( data . hasOwnProperty ( 'material_list' ) ) {
64- obj [ 'material_list' ] = ApiClient . convertToType ( data [ 'material_list' ] , [ 'String ' ] ) ;
64+ obj [ 'material_list' ] = ApiClient . convertToType ( data [ 'material_list' ] , [ 'Number ' ] ) ;
6565 }
6666 if ( data . hasOwnProperty ( 'psets' ) ) {
6767 obj [ 'psets' ] = ApiClient . convertToType ( data [ 'psets' ] , [ 'Number' ] ) ;
@@ -98,7 +98,7 @@ RawElement.prototype['type'] = undefined;
9898RawElement . prototype [ 'attributes' ] = undefined ;
9999
100100/**
101- * @member {Array.<String >} material_list
101+ * @member {Array.<Number >} material_list
102102 */
103103RawElement . prototype [ 'material_list' ] = undefined ;
104104
You can’t perform that action at this time.
0 commit comments