/* Options:
Date: 2026-01-09 14:17:29
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: EanCheckOnNumberRequest.*
//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
{
///
///Check if last six digits of the serial number of the smart meter belong to this ean
///
[Route("/EanCheckOnNumber/{Ean}/{LastSixDigitsOfNumber}", "GET")]
[Api(Description="Check if last six digits of the serial number of the smart meter belong to this ean")]
public partial class EanCheckOnNumberRequest
{
///
///Ean of the metering point
///
[ApiMember(DataType="string", Description="Ean of the metering point", IsRequired=true, Name="Ean")]
public virtual string Ean { get; set; }
///
///Last six digits of the smart meter serial number, format: integer number
///
[ApiMember(DataType="string", Description="Last six digits of the smart meter serial number, format: integer number", IsRequired=true, Name="LastSixDigitsOfNumber")]
public virtual string LastSixDigitsOfNumber { get; set; }
}
}