/* Options: Date: 2025-08-04 03:35:05 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: DeleteTenderRoundAllDocumentTypeByTenderRoundId.* //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}/round/{tenderroundid}/documenttype", Verbs="DELETE") public static class DeleteTenderRoundAllDocumentTypeByTenderRoundId implements IReturn, IDelete { public Integer TenderId = null; public Integer TenderRoundId = null; public Integer getTenderId() { return TenderId; } public DeleteTenderRoundAllDocumentTypeByTenderRoundId setTenderId(Integer value) { this.TenderId = value; return this; } public Integer getTenderRoundId() { return TenderRoundId; } public DeleteTenderRoundAllDocumentTypeByTenderRoundId setTenderRoundId(Integer value) { this.TenderRoundId = 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; } } }