Skip to content

Commit

Permalink
SDK regenerated by CI server [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
dynabic-billing-team committed Apr 8, 2024
1 parent caebf06 commit c209322
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/model/drawingObjectInsert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,11 @@ export class DrawingObjectInsert implements ModelInterface {
name: "wrapType",
baseName: "WrapType",
type: "DrawingObjectInsert.WrapTypeEnum",
},
{
name: "aspectRatioLocked",
baseName: "AspectRatioLocked",
type: "boolean",
}
];

Expand Down Expand Up @@ -130,6 +135,11 @@ export class DrawingObjectInsert implements ModelInterface {
*/
public wrapType: DrawingObjectInsert.WrapTypeEnum;

/**
* Gets or sets a value indicating whether AspectRatioLocked option on or off.
*/
public aspectRatioLocked: boolean;

public constructor(init?: Partial< DrawingObjectInsert >) {
Object.assign(this, init);
}
Expand Down Expand Up @@ -176,6 +186,7 @@ export class DrawingObjectInsert implements ModelInterface {




}
}

Expand Down
10 changes: 10 additions & 0 deletions src/model/drawingObjectUpdate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ export class DrawingObjectUpdate implements ModelInterface {
name: "wrapType",
baseName: "WrapType",
type: "DrawingObjectUpdate.WrapTypeEnum",
},
{
name: "aspectRatioLocked",
baseName: "AspectRatioLocked",
type: "boolean",
}
];

Expand Down Expand Up @@ -118,6 +123,11 @@ export class DrawingObjectUpdate implements ModelInterface {
*/
public wrapType: DrawingObjectUpdate.WrapTypeEnum;

/**
* Gets or sets a value indicating whether AspectRatioLocked option on or off.
*/
public aspectRatioLocked: boolean;

public constructor(init?: Partial< DrawingObjectUpdate >) {
Object.assign(this, init);
}
Expand Down

0 comments on commit c209322

Please sign in to comment.