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 Sep 20, 2023
1 parent 5b44cb7 commit 9537f19
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 0 deletions.
64 changes: 64 additions & 0 deletions src/model/epsSaveOptionsData.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
/*
* --------------------------------------------------------------------------------
* <copyright company="Aspose" file="epsSaveOptionsData.ts">
* Copyright (c) 2023 Aspose.Words for Cloud
* </copyright>
* <summary>
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
* </summary>
* --------------------------------------------------------------------------------
*/

import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
import { ImageSaveOptionsData } from './imageSaveOptionsData';

export const importsMapEpsSaveOptionsData = {
ImageSaveOptionsData,
};

/**
* Container class for eps save options.
*/
export class EpsSaveOptionsData extends ImageSaveOptionsData {
/**
* Attribute type map
*/
public static attributeTypeMap: Array<AttributeInfo> = [
];

/**
* Returns attribute type map
*/
public static getAttributeTypeMap() {
return super.getAttributeTypeMap().concat(EpsSaveOptionsData.attributeTypeMap);
}


public constructor(init?: Partial< EpsSaveOptionsData >) {
super(init);
this.saveFormat = 'eps';

Object.assign(this, init);
}

public collectFilesContent(_resultFilesContent: Array<any>) {
}
}

20 changes: 20 additions & 0 deletions src/model/imageSaveOptionsData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,16 @@ export abstract class ImageSaveOptionsData extends FixedPageSaveOptionsData {
baseName: "VerticalResolution",
type: "number",
},
{
name: "imageHeight",
baseName: "ImageHeight",
type: "number",
},
{
name: "imageWidth",
baseName: "ImageWidth",
type: "number",
},
{
name: "useGdiEmfRenderer",
baseName: "UseGdiEmfRenderer",
Expand Down Expand Up @@ -171,6 +181,16 @@ export abstract class ImageSaveOptionsData extends FixedPageSaveOptionsData {
*/
public verticalResolution: number;

/**
* Gets or sets the height of a generated image in pixels.
*/
public imageHeight: number;

/**
* Gets or sets the width of a generated image in pixels.
*/
public imageWidth: number;

/**
* Gets or sets a value indicating whether to use GDI+ or Aspose.Words metafile renderer when saving to EMF.
*/
Expand Down
3 changes: 3 additions & 0 deletions src/model/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ import * as importedDrawingObjectResponse from './drawingObjectResponse';
import * as importedDrawingObjectsResponse from './drawingObjectsResponse';
import * as importedDrawingObjectUpdate from './drawingObjectUpdate';
import * as importedEmfSaveOptionsData from './emfSaveOptionsData';
import * as importedEpsSaveOptionsData from './epsSaveOptionsData';
import * as importedEpubSaveOptionsData from './epubSaveOptionsData';
import * as importedError from './error';
import * as importedErrorDetails from './errorDetails';
Expand Down Expand Up @@ -381,6 +382,7 @@ export * from './drawingObjectResponse';
export * from './drawingObjectsResponse';
export * from './drawingObjectUpdate';
export * from './emfSaveOptionsData';
export * from './epsSaveOptionsData';
export * from './epubSaveOptionsData';
export * from './error';
export * from './errorDetails';
Expand Down Expand Up @@ -791,6 +793,7 @@ const typeMap = {
DrawingObjectsResponse: importedDrawingObjectsResponse.DrawingObjectsResponse,
DrawingObjectUpdate: importedDrawingObjectUpdate.DrawingObjectUpdate,
EmfSaveOptionsData: importedEmfSaveOptionsData.EmfSaveOptionsData,
EpsSaveOptionsData: importedEpsSaveOptionsData.EpsSaveOptionsData,
EpubSaveOptionsData: importedEpubSaveOptionsData.EpubSaveOptionsData,
Error: importedError.Error,
ErrorDetails: importedErrorDetails.ErrorDetails,
Expand Down

0 comments on commit 9537f19

Please sign in to comment.