File tree Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,13 @@ class DrawingObjectInsert implements ModelBase {
8787 set wrapType (DrawingObjectInsert_WrapTypeEnum ? val) => _wrapType = val;
8888
8989
90+ /// Gets or sets a value indicating whether AspectRatioLocked option on or off.
91+ bool ? _aspectRatioLocked;
92+
93+ bool ? get aspectRatioLocked => _aspectRatioLocked;
94+ set aspectRatioLocked (bool ? val) => _aspectRatioLocked = val;
95+
96+
9097 @override
9198 void deserialize (Map <String , dynamic >? json) {
9299 if (json == null ) {
@@ -171,6 +178,12 @@ class DrawingObjectInsert implements ModelBase {
171178 } else {
172179 wrapType = null ;
173180 }
181+
182+ if (json.containsKey ('AspectRatioLocked' )) {
183+ aspectRatioLocked = json['AspectRatioLocked' ] as bool ;
184+ } else {
185+ aspectRatioLocked = null ;
186+ }
174187 }
175188
176189 @override
@@ -238,6 +251,10 @@ class DrawingObjectInsert implements ModelBase {
238251 default : break ;
239252 }
240253 }
254+
255+ if (aspectRatioLocked != null ) {
256+ _result['AspectRatioLocked' ] = aspectRatioLocked! ;
257+ }
241258 return _result;
242259 }
243260
@@ -285,6 +302,7 @@ class DrawingObjectInsert implements ModelBase {
285302
286303
287304
305+
288306 }
289307}
290308
Original file line number Diff line number Diff line change @@ -80,6 +80,13 @@ class DrawingObjectUpdate implements ModelBase {
8080 set wrapType (DrawingObjectUpdate_WrapTypeEnum ? val) => _wrapType = val;
8181
8282
83+ /// Gets or sets a value indicating whether AspectRatioLocked option on or off.
84+ bool ? _aspectRatioLocked;
85+
86+ bool ? get aspectRatioLocked => _aspectRatioLocked;
87+ set aspectRatioLocked (bool ? val) => _aspectRatioLocked = val;
88+
89+
8390 @override
8491 void deserialize (Map <String , dynamic >? json) {
8592 if (json == null ) {
@@ -158,6 +165,12 @@ class DrawingObjectUpdate implements ModelBase {
158165 } else {
159166 wrapType = null ;
160167 }
168+
169+ if (json.containsKey ('AspectRatioLocked' )) {
170+ aspectRatioLocked = json['AspectRatioLocked' ] as bool ;
171+ } else {
172+ aspectRatioLocked = null ;
173+ }
161174 }
162175
163176 @override
@@ -221,6 +234,10 @@ class DrawingObjectUpdate implements ModelBase {
221234 default : break ;
222235 }
223236 }
237+
238+ if (aspectRatioLocked != null ) {
239+ _result['AspectRatioLocked' ] = aspectRatioLocked! ;
240+ }
224241 return _result;
225242 }
226243
You can’t perform that action at this time.
0 commit comments