/* Options: Date: 2025-08-04 03:14:01 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AddSupplierFile.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export enum SupplierDocumentType { RegistrationForm = 0, SpecimenSignature = 1, } export class ModifyEntityResponse extends ResponseBase { public Id: number; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class SaveFileEntityResponse extends ModifyEntityResponse { public FileContentId: number; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } // @Route("/supplier/{supplierid}/file", "POST") export class AddSupplierFile implements IReturn { public SupplierId: number; public DocumentType: SupplierDocumentType; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'AddSupplierFile'; } public getMethod() { return 'POST'; } public createResponse() { return new SaveFileEntityResponse(); } }