/* Options: Date: 2025-08-04 04:07:09 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: BrowseTenderRoundAllDocumentType.* //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="GET") public static class BrowseTenderRoundAllDocumentType implements IReturn, IGet { public Integer TenderId = null; public Integer TenderRoundId = null; public Integer getTenderId() { return TenderId; } public BrowseTenderRoundAllDocumentType setTenderId(Integer value) { this.TenderId = value; return this; } public Integer getTenderRoundId() { return TenderRoundId; } public BrowseTenderRoundAllDocumentType setTenderRoundId(Integer value) { this.TenderRoundId = value; return this; } private static Object responseType = BrowseTenderRoundAllDocumentTypeResponse.class; public Object getResponseType() { return responseType; } } public static class BrowseTenderRoundAllDocumentTypeResponse extends ResponseBase { public ArrayList DocumentTypes = null; public ArrayList getDocumentTypes() { return DocumentTypes; } public BrowseTenderRoundAllDocumentTypeResponse setDocumentTypes(ArrayList value) { this.DocumentTypes = 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; } } public static class TenderRoundDocumentTypeSimple { public Integer Id = null; public Integer TenderRoundId = null; public String DocumentType = null; public Integer getId() { return Id; } public TenderRoundDocumentTypeSimple setId(Integer value) { this.Id = value; return this; } public Integer getTenderRoundId() { return TenderRoundId; } public TenderRoundDocumentTypeSimple setTenderRoundId(Integer value) { this.TenderRoundId = value; return this; } public String getDocumentType() { return DocumentType; } public TenderRoundDocumentTypeSimple setDocumentType(String value) { this.DocumentType = value; return this; } } }