/* Options: Date: 2024-06-26 10:55:33 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UploadImagesRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class UploadImageResponse { public FilePath: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/images", "POST") export class UploadImagesRequest implements IReturn { /** @description The company id, if empty will use the company id for the user you are logged in with. */ // @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") public CompanyId?: string; /** @description 1 - LogoType ,2 - Homepage, 3 - Newsletter, 4 - Resource, 5 - Service, 6 - Customer comments, 7 - Support Case Attachments */ // @ApiMember(Description="1 - LogoType ,2 - Homepage, 3 - Newsletter, 4 - Resource, 5 - Service, 6 - Customer comments, 7 - Support Case Attachments", IsRequired=true, ParameterType="query") public FolderType: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UploadImagesRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new UploadImageResponse(); } }