/* Options: Date: 2026-01-09 14:15:23 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ean.smartdatasolutions.nl //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EanCheckOnNumberRequest.* //ExcludeTypes: //DefaultImports: */ /** @description 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") export class EanCheckOnNumberRequest { /** @description Ean of the metering point */ // @ApiMember(DataType="string", Description="Ean of the metering point", IsRequired=true, Name="Ean") public Ean: string; /** @description 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 LastSixDigitsOfNumber: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'EanCheckOnNumberRequest'; } public getMethod() { return 'GET'; } public createResponse() {} }