/* Options: Date: 2026-01-09 14:16:16 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ean.smartdatasolutions.nl //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: EanCodeBookRequestWithSuffix.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using SDS.APIs.Legacy.EanCodeBook.ServiceInterface; namespace SDS.APIs.Legacy.EanCodeBook.ServiceInterface { /// ///Get metering points from www.eancodeboek.nl /// [Route("/eancodebook/{Postcode}/{HouseNumber}/{Suffix}", "GET")] [Api(Description="Get metering points from www.eancodeboek.nl")] public partial class EanCodeBookRequestWithSuffix { /// ///Postcode, format: 1234AB /// [ApiMember(DataType="string", Description="Postcode, format: 1234AB", IsRequired=true, Name="Postcode")] public virtual string Postcode { get; set; } /// ///Housenumber, format: integer number /// [ApiMember(DataType="integer", Description="Housenumber, format: integer number", IsRequired=true, Name="HouseNumber")] public virtual int HouseNumber { get; set; } /// ///Suffix /// [ApiMember(DataType="string", Description="Suffix", Name="Suffix")] public virtual string Suffix { get; set; } /// ///OPTIONAL: don't put data in wrapper /// [ApiMember(DataType="boolean", Description="OPTIONAL: don't put data in wrapper", Name="OnlyPayload")] public virtual bool OnlyPayload { get; set; } } }