/* Options: Date: 2025-08-04 04:08:41 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: EditTenderEndPublish.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/tender/{tenderid}/endpublish", Verbs="PUT") public static class EditTenderEndPublish implements IReturn, IPut { public Integer TenderId = null; public Integer getTenderId() { return TenderId; } public EditTenderEndPublish setTenderId(Integer value) { this.TenderId = value; return this; } private static Object responseType = ModifyEntityResponse.class; public Object getResponseType() { return responseType; } } public static class ModifyEntityResponse extends ResponseBase { public Integer Id = null; public Integer getId() { return Id; } public ModifyEntityResponse setId(Integer value) { this.Id = value; return this; } } public static class ResponseBase { public ResponseStatus ResponseStatus = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public ResponseBase setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }