Skip to content
This repository was archived by the owner on Nov 18, 2025. It is now read-only.

Commit 752e21f

Browse files
committed
PATCH: fix raw element serializer
1 parent 30eebd9 commit 752e21f

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

docs/RawMaterialListComponents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**id** | **Number** | | [optional] [readonly]
88
**material** | **Number** | | [optional]
9-
**materialOption** | **Number** | |
9+
**materialOption** | **Number** | | [optional]
1010

1111

src/model/RawMaterialListComponents.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,18 @@ class RawMaterialListComponents {
2222
/**
2323
* Constructs a new <code>RawMaterialListComponents</code>.
2424
* @alias module:model/RawMaterialListComponents
25-
* @param materialOption {Number}
2625
*/
27-
constructor(materialOption) {
26+
constructor() {
2827

29-
RawMaterialListComponents.initialize(this, materialOption);
28+
RawMaterialListComponents.initialize(this);
3029
}
3130

3231
/**
3332
* Initializes the fields of this object.
3433
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
3534
* Only for internal use.
3635
*/
37-
static initialize(obj, materialOption) {
38-
obj['material_option'] = materialOption;
36+
static initialize(obj) {
3937
}
4038

4139
/**

0 commit comments

Comments
 (0)