/* Options: Date: 2024-10-18 04:31:28 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetCompaniesLookup.* //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="/companies/lookup", Verbs="GET") public static class GetCompaniesLookup implements IReturn { public String ChamberNr = null; public String TradeName = null; public String City = null; public String getChamberNr() { return ChamberNr; } public GetCompaniesLookup setChamberNr(String value) { this.ChamberNr = value; return this; } public String getTradeName() { return TradeName; } public GetCompaniesLookup setTradeName(String value) { this.TradeName = value; return this; } public String getCity() { return City; } public GetCompaniesLookup setCity(String value) { this.City = value; return this; } private static Object responseType = CompanyLookupSearchResults.class; public Object getResponseType() { return responseType; } } public static class CompanyLookupSearchResults { public ArrayList Results = null; public PagingResultsInfo PagingResultsInfo = null; public ArrayList getResults() { return Results; } public CompanyLookupSearchResults setResults(ArrayList value) { this.Results = value; return this; } public PagingResultsInfo getPagingResultsInfo() { return PagingResultsInfo; } public CompanyLookupSearchResults setPagingResultsInfo(PagingResultsInfo value) { this.PagingResultsInfo = value; return this; } } public static class CompanyLookupEntry { public String ChamberNr = null; public String ChamberEstablishmentNumber = null; public String LegalName = null; public String TradeName = null; public String MatchType = null; public String EstablishmentCity = null; public String EstablishmentStreet = null; public String CorrespondenceCity = null; public String CorrespondenceStreet = null; public Boolean IndicationMainEstablishment = null; public String getChamberNr() { return ChamberNr; } public CompanyLookupEntry setChamberNr(String value) { this.ChamberNr = value; return this; } public String getChamberEstablishmentNumber() { return ChamberEstablishmentNumber; } public CompanyLookupEntry setChamberEstablishmentNumber(String value) { this.ChamberEstablishmentNumber = value; return this; } public String getLegalName() { return LegalName; } public CompanyLookupEntry setLegalName(String value) { this.LegalName = value; return this; } public String getTradeName() { return TradeName; } public CompanyLookupEntry setTradeName(String value) { this.TradeName = value; return this; } public String getMatchType() { return MatchType; } public CompanyLookupEntry setMatchType(String value) { this.MatchType = value; return this; } public String getEstablishmentCity() { return EstablishmentCity; } public CompanyLookupEntry setEstablishmentCity(String value) { this.EstablishmentCity = value; return this; } public String getEstablishmentStreet() { return EstablishmentStreet; } public CompanyLookupEntry setEstablishmentStreet(String value) { this.EstablishmentStreet = value; return this; } public String getCorrespondenceCity() { return CorrespondenceCity; } public CompanyLookupEntry setCorrespondenceCity(String value) { this.CorrespondenceCity = value; return this; } public String getCorrespondenceStreet() { return CorrespondenceStreet; } public CompanyLookupEntry setCorrespondenceStreet(String value) { this.CorrespondenceStreet = value; return this; } public Boolean isIndicationMainEstablishment() { return IndicationMainEstablishment; } public CompanyLookupEntry setIndicationMainEstablishment(Boolean value) { this.IndicationMainEstablishment = value; return this; } } public static class PagingResultsInfo { public Integer CurrentPage = null; public Integer MaxResultsPerPage = null; public Integer NumberOfPages = null; public Integer NumberOfResults = null; public Integer MaximumResults = null; public Integer getCurrentPage() { return CurrentPage; } public PagingResultsInfo setCurrentPage(Integer value) { this.CurrentPage = value; return this; } public Integer getMaxResultsPerPage() { return MaxResultsPerPage; } public PagingResultsInfo setMaxResultsPerPage(Integer value) { this.MaxResultsPerPage = value; return this; } public Integer getNumberOfPages() { return NumberOfPages; } public PagingResultsInfo setNumberOfPages(Integer value) { this.NumberOfPages = value; return this; } public Integer getNumberOfResults() { return NumberOfResults; } public PagingResultsInfo setNumberOfResults(Integer value) { this.NumberOfResults = value; return this; } public Integer getMaximumResults() { return MaximumResults; } public PagingResultsInfo setMaximumResults(Integer value) { this.MaximumResults = value; return this; } } }