/* Options:
Date: 2026-01-09 14:12:36
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: EanCodeBookRequest.*
//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}", "GET")]
[Api(Description="Get metering points from www.eancodeboek.nl")]
public partial class EanCodeBookRequest
{
///
///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; }
///
///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; }
}
}