From 6ef57792ceb918b13da9df59b908954de61aaca7 Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Thu, 15 Aug 2024 21:16:46 +0200 Subject: [PATCH] Add PrepaidOptionType. PrepaidType declared as deprecated. --- library/include/mobilisis/member_type.h | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/library/include/mobilisis/member_type.h b/library/include/mobilisis/member_type.h index dcfd012..d11469c 100644 --- a/library/include/mobilisis/member_type.h +++ b/library/include/mobilisis/member_type.h @@ -13,16 +13,17 @@ enum MemberType WeekDaysWorkTimeType = 0x06, SpecialDaysWorktimeType = 0x07, SpecialDaysType = 0x08, - PeriodYearType = 0x09, - DailyTicketType = 0x0A, - CustomerType = 0x0B, - TimeBaseType = 0x0C, - TimeRangeType = 0x0D, - TimeStepConfigType = 0x0E, - ProductType = 0x0F, - InterpolationType = 0x10, - PrepaidType = 0x11, - CarryOverType = 0x12 + PeriodYearType = 0x09, + DailyTicketType = 0x0A, + CustomerType = 0x0B, + TimeBaseType = 0x0C, + TimeRangeType = 0x0D, + TimeStepConfigType = 0x0E, + ProductType = 0x0F, + InterpolationType = 0x10, + PrepaidType = 0x11, // deprecated + CarryOverType = 0x12, + PrepaidOptionType = 0x13, }; #endif // MEMBER_TYPE_H_INCLUDED