From 02927be9c9fe615b7ec59a67c8674c5050dbbfca Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Fri, 19 Jul 2024 14:02:41 +0200 Subject: [PATCH] Added interpolation, carryover and prepaid types --- library/include/mobilisis/member_type.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/library/include/mobilisis/member_type.h b/library/include/mobilisis/member_type.h index cd7eea0..dcfd012 100644 --- a/library/include/mobilisis/member_type.h +++ b/library/include/mobilisis/member_type.h @@ -19,7 +19,10 @@ enum MemberType TimeBaseType = 0x0C, TimeRangeType = 0x0D, TimeStepConfigType = 0x0E, - ProductType = 0x0F + ProductType = 0x0F, + InterpolationType = 0x10, + PrepaidType = 0x11, + CarryOverType = 0x12 }; #endif // MEMBER_TYPE_H_INCLUDED