/* Options: Date: 2025-04-04 18:07:24 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.clubmanagercentral.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: MemberService.GetMembersForAccessControlRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; enum ExternalStatus { Off, Active, Pending, CancelledInsideContract, CancelledOutsideContract, WithDebtRecovery, Suspended, } enum MembershipState { Prospect, Active, Expired, Cancelled, PaymentRequired, Suspended, } enum MemberAccess { AccessAllowed, NoAccess, NoMultiSiteAccess, NoSessions, NoScheduleAccess, NoAccessTimeLimitExceeded, Suspended, } class AccessControlMember implements IConvertible { int? MemberId; int? EnrolmentId; int? BranchId; MembershipState? MembershipState; String? MembershipNumber; String? CardNumber; String? Forenames; String? Surname; bool? MultiSiteAccess; bool? UseExternalStatus; ExternalStatus? ExternalStatus; String? MembershipTypeName; DateTime? StartDate; DateTime? EndDate; int? ScheduleId; int? SessionsRemaining; DateTime? LastAttendance; MemberAccess? MemberAccess; AccessControlMember({this.MemberId,this.EnrolmentId,this.BranchId,this.MembershipState,this.MembershipNumber,this.CardNumber,this.Forenames,this.Surname,this.MultiSiteAccess,this.UseExternalStatus,this.ExternalStatus,this.MembershipTypeName,this.StartDate,this.EndDate,this.ScheduleId,this.SessionsRemaining,this.LastAttendance,this.MemberAccess}); AccessControlMember.fromJson(Map json) { fromMap(json); } fromMap(Map json) { MemberId = json['MemberId']; EnrolmentId = json['EnrolmentId']; BranchId = json['BranchId']; MembershipState = JsonConverters.fromJson(json['MembershipState'],'MembershipState',context!); MembershipNumber = json['MembershipNumber']; CardNumber = json['CardNumber']; Forenames = json['Forenames']; Surname = json['Surname']; MultiSiteAccess = json['MultiSiteAccess']; UseExternalStatus = json['UseExternalStatus']; ExternalStatus = JsonConverters.fromJson(json['ExternalStatus'],'ExternalStatus',context!); MembershipTypeName = json['MembershipTypeName']; StartDate = JsonConverters.fromJson(json['StartDate'],'DateTime',context!); EndDate = JsonConverters.fromJson(json['EndDate'],'DateTime',context!); ScheduleId = json['ScheduleId']; SessionsRemaining = json['SessionsRemaining']; LastAttendance = JsonConverters.fromJson(json['LastAttendance'],'DateTime',context!); MemberAccess = JsonConverters.fromJson(json['MemberAccess'],'MemberAccess',context!); return this; } Map toJson() => { 'MemberId': MemberId, 'EnrolmentId': EnrolmentId, 'BranchId': BranchId, 'MembershipState': JsonConverters.toJson(MembershipState,'MembershipState',context!), 'MembershipNumber': MembershipNumber, 'CardNumber': CardNumber, 'Forenames': Forenames, 'Surname': Surname, 'MultiSiteAccess': MultiSiteAccess, 'UseExternalStatus': UseExternalStatus, 'ExternalStatus': JsonConverters.toJson(ExternalStatus,'ExternalStatus',context!), 'MembershipTypeName': MembershipTypeName, 'StartDate': JsonConverters.toJson(StartDate,'DateTime',context!), 'EndDate': JsonConverters.toJson(EndDate,'DateTime',context!), 'ScheduleId': ScheduleId, 'SessionsRemaining': SessionsRemaining, 'LastAttendance': JsonConverters.toJson(LastAttendance,'DateTime',context!), 'MemberAccess': JsonConverters.toJson(MemberAccess,'MemberAccess',context!) }; getTypeName() => "AccessControlMember"; TypeContext? context = _ctx; } class Schedule implements IConvertible { int? ScheduleId; String? Name; String? Description; Duration? MondayFrom; Duration? MondayTo; Duration? TuesdayFrom; Duration? TuesdayTo; Duration? WednesdayFrom; Duration? WednesdayTo; Duration? ThursdayFrom; Duration? ThursdayTo; Duration? FridayFrom; Duration? FridayTo; Duration? SaturdayFrom; Duration? SaturdayTo; Duration? SundayFrom; Duration? SundayTo; int? ScheduleType; int? BranchId; bool? Deleted; bool? Demo; bool? Monday; bool? Tuesday; bool? Wednesday; bool? Thursday; bool? Friday; bool? Saturday; bool? Sunday; Duration? MondayTotalTime; Duration? TuesdayTotalTime; Duration? WednesdayTotalTime; Duration? ThursdayTotalTime; Duration? FridayTotalTime; Duration? SaturdayTotalTime; Duration? SundayTotalTime; Duration? TotalTime; Schedule({this.ScheduleId,this.Name,this.Description,this.MondayFrom,this.MondayTo,this.TuesdayFrom,this.TuesdayTo,this.WednesdayFrom,this.WednesdayTo,this.ThursdayFrom,this.ThursdayTo,this.FridayFrom,this.FridayTo,this.SaturdayFrom,this.SaturdayTo,this.SundayFrom,this.SundayTo,this.ScheduleType,this.BranchId,this.Deleted,this.Demo,this.Monday,this.Tuesday,this.Wednesday,this.Thursday,this.Friday,this.Saturday,this.Sunday,this.MondayTotalTime,this.TuesdayTotalTime,this.WednesdayTotalTime,this.ThursdayTotalTime,this.FridayTotalTime,this.SaturdayTotalTime,this.SundayTotalTime,this.TotalTime}); Schedule.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ScheduleId = json['ScheduleId']; Name = json['Name']; Description = json['Description']; MondayFrom = JsonConverters.fromJson(json['MondayFrom'],'Duration',context!); MondayTo = JsonConverters.fromJson(json['MondayTo'],'Duration',context!); TuesdayFrom = JsonConverters.fromJson(json['TuesdayFrom'],'Duration',context!); TuesdayTo = JsonConverters.fromJson(json['TuesdayTo'],'Duration',context!); WednesdayFrom = JsonConverters.fromJson(json['WednesdayFrom'],'Duration',context!); WednesdayTo = JsonConverters.fromJson(json['WednesdayTo'],'Duration',context!); ThursdayFrom = JsonConverters.fromJson(json['ThursdayFrom'],'Duration',context!); ThursdayTo = JsonConverters.fromJson(json['ThursdayTo'],'Duration',context!); FridayFrom = JsonConverters.fromJson(json['FridayFrom'],'Duration',context!); FridayTo = JsonConverters.fromJson(json['FridayTo'],'Duration',context!); SaturdayFrom = JsonConverters.fromJson(json['SaturdayFrom'],'Duration',context!); SaturdayTo = JsonConverters.fromJson(json['SaturdayTo'],'Duration',context!); SundayFrom = JsonConverters.fromJson(json['SundayFrom'],'Duration',context!); SundayTo = JsonConverters.fromJson(json['SundayTo'],'Duration',context!); ScheduleType = json['ScheduleType']; BranchId = json['BranchId']; Deleted = json['Deleted']; Demo = json['Demo']; Monday = json['Monday']; Tuesday = json['Tuesday']; Wednesday = json['Wednesday']; Thursday = json['Thursday']; Friday = json['Friday']; Saturday = json['Saturday']; Sunday = json['Sunday']; MondayTotalTime = JsonConverters.fromJson(json['MondayTotalTime'],'Duration',context!); TuesdayTotalTime = JsonConverters.fromJson(json['TuesdayTotalTime'],'Duration',context!); WednesdayTotalTime = JsonConverters.fromJson(json['WednesdayTotalTime'],'Duration',context!); ThursdayTotalTime = JsonConverters.fromJson(json['ThursdayTotalTime'],'Duration',context!); FridayTotalTime = JsonConverters.fromJson(json['FridayTotalTime'],'Duration',context!); SaturdayTotalTime = JsonConverters.fromJson(json['SaturdayTotalTime'],'Duration',context!); SundayTotalTime = JsonConverters.fromJson(json['SundayTotalTime'],'Duration',context!); TotalTime = JsonConverters.fromJson(json['TotalTime'],'Duration',context!); return this; } Map toJson() => { 'ScheduleId': ScheduleId, 'Name': Name, 'Description': Description, 'MondayFrom': JsonConverters.toJson(MondayFrom,'Duration',context!), 'MondayTo': JsonConverters.toJson(MondayTo,'Duration',context!), 'TuesdayFrom': JsonConverters.toJson(TuesdayFrom,'Duration',context!), 'TuesdayTo': JsonConverters.toJson(TuesdayTo,'Duration',context!), 'WednesdayFrom': JsonConverters.toJson(WednesdayFrom,'Duration',context!), 'WednesdayTo': JsonConverters.toJson(WednesdayTo,'Duration',context!), 'ThursdayFrom': JsonConverters.toJson(ThursdayFrom,'Duration',context!), 'ThursdayTo': JsonConverters.toJson(ThursdayTo,'Duration',context!), 'FridayFrom': JsonConverters.toJson(FridayFrom,'Duration',context!), 'FridayTo': JsonConverters.toJson(FridayTo,'Duration',context!), 'SaturdayFrom': JsonConverters.toJson(SaturdayFrom,'Duration',context!), 'SaturdayTo': JsonConverters.toJson(SaturdayTo,'Duration',context!), 'SundayFrom': JsonConverters.toJson(SundayFrom,'Duration',context!), 'SundayTo': JsonConverters.toJson(SundayTo,'Duration',context!), 'ScheduleType': ScheduleType, 'BranchId': BranchId, 'Deleted': Deleted, 'Demo': Demo, 'Monday': Monday, 'Tuesday': Tuesday, 'Wednesday': Wednesday, 'Thursday': Thursday, 'Friday': Friday, 'Saturday': Saturday, 'Sunday': Sunday, 'MondayTotalTime': JsonConverters.toJson(MondayTotalTime,'Duration',context!), 'TuesdayTotalTime': JsonConverters.toJson(TuesdayTotalTime,'Duration',context!), 'WednesdayTotalTime': JsonConverters.toJson(WednesdayTotalTime,'Duration',context!), 'ThursdayTotalTime': JsonConverters.toJson(ThursdayTotalTime,'Duration',context!), 'FridayTotalTime': JsonConverters.toJson(FridayTotalTime,'Duration',context!), 'SaturdayTotalTime': JsonConverters.toJson(SaturdayTotalTime,'Duration',context!), 'SundayTotalTime': JsonConverters.toJson(SundayTotalTime,'Duration',context!), 'TotalTime': JsonConverters.toJson(TotalTime,'Duration',context!) }; getTypeName() => "Schedule"; TypeContext? context = _ctx; } class Branch implements IConvertible { int? BranchId; BranchType? BranchType; String? Name; String? Prefix; String? CompanyName; String? CompanyAddress; String? CompanyOfficialName; String? DirectDebitReference; String? FastDDReference; String? FastDDPlatinumRef; String? Style; String? PublicKey; String? PrivateKey; DateTime? TrialStart; DateTime? TrialEnd; DateTime? PaymentStartDate; bool? InTrial; bool? UseFreeText; String? FreeTextTitle; bool? UseMembershipTypes; String? DDUserName; String? DDPassword; String? DDServiceUser; String? DfcUserName; String? DfcPassword; String? DfcClubNumber; String? CompanyEmail; String? SmsOriginator; int? LanguageId; double? VatRate; int? SwipeAction; Module? Modules; bool? UseCreditBalance; bool? AllowNegativeBalance; double? DefaultCreditLimit; ApplicationType? ApplicationType; String? ExternalProviderWarning; String? Domain; String? MobileDomain; int? OnlineBookingTimetableLimit; int? OnlineBookingCancellationLimit; int? OnlineBookingLimit; Feature? Feature; String? TimeZone; String? Culture; String? Country; Iso3166Country? Iso3166Country; String? CurrencyCulture; bool? ShowGoCardlessAd; double? GoCardlessSaving; String? SROAddress; String? MCAClubNo; String? MCAClubRef; String? TwilioNumber; String? Telephone; bool? Transferred; bool? OnlineBookingAllowNonActives; int? MemberLimit; String? SortCode; String? AccountNumber; String? Website; bool? SendSMSAppointmentRemindersDefault; bool? SendSMSBookingReminders; bool? GiftAid; Duration? GlobalBookingStartTime; Duration? GlobalBookingEndTime; int? BookingMinuteIncrements; String? CancelReason; String? CancelFurther; DateTime? CancelDate; double? DirectDebitFee; double? CreditCardFee; double? SMSPriceAdjustment; bool? BookingsPayLinkOnTrack; int? AccessControlTimeLimit; BranchMinimiser? Minimiser; bool? AutoGenerateLicenses; String? Terms; int? FingerprintThreshold; int? FingerprintMatcherThreshold; bool? AutoShutoff; String? PrimaryColors; bool? HasColors; String? PrimaryColor; String? SecondaryColor; String? BackgroundColor; String? HeaderTopColor; String? HeaderBottomColor; String? SideLeftColor; String? SideRightColor; String? SideFontColor; String? SideFontActiveColor; String? ExtWebBackgroundColor; String? ExtWebTextColor; String? ExtWebTintBackColor; String? ExtWebHighlightBackColor; String? ExtWebTabBackColor; String? HeadingColor; ReportFormat? ReportFormat; bool? FixPayments; String? FixPaymentSchedle; AppFeature? AppFeature; SignInScreenFeature? SignInScreenFeature; String? AppOptions; String? CompanyDescription; int? Capacity; int? MonthlySalesTarget; int? BookingAccessTimeLimit; String? Facebook; String? Twitter; String? Instagram; String? YouTube; String? TikTok; String? Shopify; int? MinimumMemberAge; DateTime? TermsAndConditionsVersionDate; DateTime? TermsAndConditionsAcceptedDate; bool? TermsAndConditionsAccepted; String? SiteUrl; bool? IsUsingSmartDebit; bool? IsUsingDfc; bool? IsSouthAfrica; bool? SmartDebitConfigured; bool? DfcConfigured; bool? UsingPaymentMethods; String? SmsPrefix; String? Logo; String? LogoThumbnail; String? LogoHash; bool? SendMarketingInviteWhenMemberAdded; bool? SendMarketingInviteWhenMemberJoinedOnline; bool? MarketingComplianceManagedExternally; bool? OnlineBookingAllowWaitingList; bool? OnlineMultiSiteEnabled; bool? CanBookOnline; int? PublicMembershipTypes; int? TrustedBranches; bool? IsAddingProspects; bool? IsSellingMemberships; bool? IsCreatingTasks; bool? IsCreatingAppointments; bool? IsBookingClasses; bool? IsRegisteringAttendance; bool? IsSellingProducts; bool? IsSendingEmails; bool? IsSendingSMS; bool? IsUsingAutomation; bool? DeductSessionsOnBooking; bool? ShowTrustedBranchBookings; int? Score; String? ApplicationId; String? iOSAppLink; String? AndroidAppLink; Branch({this.BranchId,this.BranchType,this.Name,this.Prefix,this.CompanyName,this.CompanyAddress,this.CompanyOfficialName,this.DirectDebitReference,this.FastDDReference,this.FastDDPlatinumRef,this.Style,this.PublicKey,this.PrivateKey,this.TrialStart,this.TrialEnd,this.PaymentStartDate,this.InTrial,this.UseFreeText,this.FreeTextTitle,this.UseMembershipTypes,this.DDUserName,this.DDPassword,this.DDServiceUser,this.DfcUserName,this.DfcPassword,this.DfcClubNumber,this.CompanyEmail,this.SmsOriginator,this.LanguageId,this.VatRate,this.SwipeAction,this.Modules,this.UseCreditBalance,this.AllowNegativeBalance,this.DefaultCreditLimit,this.ApplicationType,this.ExternalProviderWarning,this.Domain,this.MobileDomain,this.OnlineBookingTimetableLimit,this.OnlineBookingCancellationLimit,this.OnlineBookingLimit,this.Feature,this.TimeZone,this.Culture,this.Country,this.Iso3166Country,this.CurrencyCulture,this.ShowGoCardlessAd,this.GoCardlessSaving,this.SROAddress,this.MCAClubNo,this.MCAClubRef,this.TwilioNumber,this.Telephone,this.Transferred,this.OnlineBookingAllowNonActives,this.MemberLimit,this.SortCode,this.AccountNumber,this.Website,this.SendSMSAppointmentRemindersDefault,this.SendSMSBookingReminders,this.GiftAid,this.GlobalBookingStartTime,this.GlobalBookingEndTime,this.BookingMinuteIncrements,this.CancelReason,this.CancelFurther,this.CancelDate,this.DirectDebitFee,this.CreditCardFee,this.SMSPriceAdjustment,this.BookingsPayLinkOnTrack,this.AccessControlTimeLimit,this.Minimiser,this.AutoGenerateLicenses,this.Terms,this.FingerprintThreshold,this.FingerprintMatcherThreshold,this.AutoShutoff,this.PrimaryColors,this.HasColors,this.PrimaryColor,this.SecondaryColor,this.BackgroundColor,this.HeaderTopColor,this.HeaderBottomColor,this.SideLeftColor,this.SideRightColor,this.SideFontColor,this.SideFontActiveColor,this.ExtWebBackgroundColor,this.ExtWebTextColor,this.ExtWebTintBackColor,this.ExtWebHighlightBackColor,this.ExtWebTabBackColor,this.HeadingColor,this.ReportFormat,this.FixPayments,this.FixPaymentSchedle,this.AppFeature,this.SignInScreenFeature,this.AppOptions,this.CompanyDescription,this.Capacity,this.MonthlySalesTarget,this.BookingAccessTimeLimit,this.Facebook,this.Twitter,this.Instagram,this.YouTube,this.TikTok,this.Shopify,this.MinimumMemberAge,this.TermsAndConditionsVersionDate,this.TermsAndConditionsAcceptedDate,this.TermsAndConditionsAccepted,this.SiteUrl,this.IsUsingSmartDebit,this.IsUsingDfc,this.IsSouthAfrica,this.SmartDebitConfigured,this.DfcConfigured,this.UsingPaymentMethods,this.SmsPrefix,this.Logo,this.LogoThumbnail,this.LogoHash,this.SendMarketingInviteWhenMemberAdded,this.SendMarketingInviteWhenMemberJoinedOnline,this.MarketingComplianceManagedExternally,this.OnlineBookingAllowWaitingList,this.OnlineMultiSiteEnabled,this.CanBookOnline,this.PublicMembershipTypes,this.TrustedBranches,this.IsAddingProspects,this.IsSellingMemberships,this.IsCreatingTasks,this.IsCreatingAppointments,this.IsBookingClasses,this.IsRegisteringAttendance,this.IsSellingProducts,this.IsSendingEmails,this.IsSendingSMS,this.IsUsingAutomation,this.DeductSessionsOnBooking,this.ShowTrustedBranchBookings,this.Score,this.ApplicationId,this.iOSAppLink,this.AndroidAppLink}); Branch.fromJson(Map json) { fromMap(json); } fromMap(Map json) { BranchId = json['BranchId']; BranchType = JsonConverters.fromJson(json['BranchType'],'BranchType',context!); Name = json['Name']; Prefix = json['Prefix']; CompanyName = json['CompanyName']; CompanyAddress = json['CompanyAddress']; CompanyOfficialName = json['CompanyOfficialName']; DirectDebitReference = json['DirectDebitReference']; FastDDReference = json['FastDDReference']; FastDDPlatinumRef = json['FastDDPlatinumRef']; Style = json['Style']; PublicKey = json['PublicKey']; PrivateKey = json['PrivateKey']; TrialStart = JsonConverters.fromJson(json['TrialStart'],'DateTime',context!); TrialEnd = JsonConverters.fromJson(json['TrialEnd'],'DateTime',context!); PaymentStartDate = JsonConverters.fromJson(json['PaymentStartDate'],'DateTime',context!); InTrial = json['InTrial']; UseFreeText = json['UseFreeText']; FreeTextTitle = json['FreeTextTitle']; UseMembershipTypes = json['UseMembershipTypes']; DDUserName = json['DDUserName']; DDPassword = json['DDPassword']; DDServiceUser = json['DDServiceUser']; DfcUserName = json['DfcUserName']; DfcPassword = json['DfcPassword']; DfcClubNumber = json['DfcClubNumber']; CompanyEmail = json['CompanyEmail']; SmsOriginator = json['SmsOriginator']; LanguageId = json['LanguageId']; VatRate = JsonConverters.toDouble(json['VatRate']); SwipeAction = json['SwipeAction']; Modules = JsonConverters.fromJson(json['Modules'],'Module',context!); UseCreditBalance = json['UseCreditBalance']; AllowNegativeBalance = json['AllowNegativeBalance']; DefaultCreditLimit = JsonConverters.toDouble(json['DefaultCreditLimit']); ApplicationType = JsonConverters.fromJson(json['ApplicationType'],'ApplicationType',context!); ExternalProviderWarning = json['ExternalProviderWarning']; Domain = json['Domain']; MobileDomain = json['MobileDomain']; OnlineBookingTimetableLimit = json['OnlineBookingTimetableLimit']; OnlineBookingCancellationLimit = json['OnlineBookingCancellationLimit']; OnlineBookingLimit = json['OnlineBookingLimit']; Feature = JsonConverters.fromJson(json['Feature'],'Feature',context!); TimeZone = json['TimeZone']; Culture = json['Culture']; Country = json['Country']; Iso3166Country = JsonConverters.fromJson(json['Iso3166Country'],'Iso3166Country',context!); CurrencyCulture = json['CurrencyCulture']; ShowGoCardlessAd = json['ShowGoCardlessAd']; GoCardlessSaving = JsonConverters.toDouble(json['GoCardlessSaving']); SROAddress = json['SROAddress']; MCAClubNo = json['MCAClubNo']; MCAClubRef = json['MCAClubRef']; TwilioNumber = json['TwilioNumber']; Telephone = json['Telephone']; Transferred = json['Transferred']; OnlineBookingAllowNonActives = json['OnlineBookingAllowNonActives']; MemberLimit = json['MemberLimit']; SortCode = json['SortCode']; AccountNumber = json['AccountNumber']; Website = json['Website']; SendSMSAppointmentRemindersDefault = json['SendSMSAppointmentRemindersDefault']; SendSMSBookingReminders = json['SendSMSBookingReminders']; GiftAid = json['GiftAid']; GlobalBookingStartTime = JsonConverters.fromJson(json['GlobalBookingStartTime'],'Duration',context!); GlobalBookingEndTime = JsonConverters.fromJson(json['GlobalBookingEndTime'],'Duration',context!); BookingMinuteIncrements = json['BookingMinuteIncrements']; CancelReason = json['CancelReason']; CancelFurther = json['CancelFurther']; CancelDate = JsonConverters.fromJson(json['CancelDate'],'DateTime',context!); DirectDebitFee = JsonConverters.toDouble(json['DirectDebitFee']); CreditCardFee = JsonConverters.toDouble(json['CreditCardFee']); SMSPriceAdjustment = JsonConverters.toDouble(json['SMSPriceAdjustment']); BookingsPayLinkOnTrack = json['BookingsPayLinkOnTrack']; AccessControlTimeLimit = json['AccessControlTimeLimit']; Minimiser = JsonConverters.fromJson(json['Minimiser'],'BranchMinimiser',context!); AutoGenerateLicenses = json['AutoGenerateLicenses']; Terms = json['Terms']; FingerprintThreshold = json['FingerprintThreshold']; FingerprintMatcherThreshold = json['FingerprintMatcherThreshold']; AutoShutoff = json['AutoShutoff']; PrimaryColors = json['PrimaryColors']; HasColors = json['HasColors']; PrimaryColor = json['PrimaryColor']; SecondaryColor = json['SecondaryColor']; BackgroundColor = json['BackgroundColor']; HeaderTopColor = json['HeaderTopColor']; HeaderBottomColor = json['HeaderBottomColor']; SideLeftColor = json['SideLeftColor']; SideRightColor = json['SideRightColor']; SideFontColor = json['SideFontColor']; SideFontActiveColor = json['SideFontActiveColor']; ExtWebBackgroundColor = json['ExtWebBackgroundColor']; ExtWebTextColor = json['ExtWebTextColor']; ExtWebTintBackColor = json['ExtWebTintBackColor']; ExtWebHighlightBackColor = json['ExtWebHighlightBackColor']; ExtWebTabBackColor = json['ExtWebTabBackColor']; HeadingColor = json['HeadingColor']; ReportFormat = JsonConverters.fromJson(json['ReportFormat'],'ReportFormat',context!); FixPayments = json['FixPayments']; FixPaymentSchedle = json['FixPaymentSchedle']; AppFeature = JsonConverters.fromJson(json['AppFeature'],'AppFeature',context!); SignInScreenFeature = JsonConverters.fromJson(json['SignInScreenFeature'],'SignInScreenFeature',context!); AppOptions = json['AppOptions']; CompanyDescription = json['CompanyDescription']; Capacity = json['Capacity']; MonthlySalesTarget = json['MonthlySalesTarget']; BookingAccessTimeLimit = json['BookingAccessTimeLimit']; Facebook = json['Facebook']; Twitter = json['Twitter']; Instagram = json['Instagram']; YouTube = json['YouTube']; TikTok = json['TikTok']; Shopify = json['Shopify']; MinimumMemberAge = json['MinimumMemberAge']; TermsAndConditionsVersionDate = JsonConverters.fromJson(json['TermsAndConditionsVersionDate'],'DateTime',context!); TermsAndConditionsAcceptedDate = JsonConverters.fromJson(json['TermsAndConditionsAcceptedDate'],'DateTime',context!); TermsAndConditionsAccepted = json['TermsAndConditionsAccepted']; SiteUrl = json['SiteUrl']; IsUsingSmartDebit = json['IsUsingSmartDebit']; IsUsingDfc = json['IsUsingDfc']; IsSouthAfrica = json['IsSouthAfrica']; SmartDebitConfigured = json['SmartDebitConfigured']; DfcConfigured = json['DfcConfigured']; UsingPaymentMethods = json['UsingPaymentMethods']; SmsPrefix = json['SmsPrefix']; Logo = json['Logo']; LogoThumbnail = json['LogoThumbnail']; LogoHash = json['LogoHash']; SendMarketingInviteWhenMemberAdded = json['SendMarketingInviteWhenMemberAdded']; SendMarketingInviteWhenMemberJoinedOnline = json['SendMarketingInviteWhenMemberJoinedOnline']; MarketingComplianceManagedExternally = json['MarketingComplianceManagedExternally']; OnlineBookingAllowWaitingList = json['OnlineBookingAllowWaitingList']; OnlineMultiSiteEnabled = json['OnlineMultiSiteEnabled']; CanBookOnline = json['CanBookOnline']; PublicMembershipTypes = json['PublicMembershipTypes']; TrustedBranches = json['TrustedBranches']; IsAddingProspects = json['IsAddingProspects']; IsSellingMemberships = json['IsSellingMemberships']; IsCreatingTasks = json['IsCreatingTasks']; IsCreatingAppointments = json['IsCreatingAppointments']; IsBookingClasses = json['IsBookingClasses']; IsRegisteringAttendance = json['IsRegisteringAttendance']; IsSellingProducts = json['IsSellingProducts']; IsSendingEmails = json['IsSendingEmails']; IsSendingSMS = json['IsSendingSMS']; IsUsingAutomation = json['IsUsingAutomation']; DeductSessionsOnBooking = json['DeductSessionsOnBooking']; ShowTrustedBranchBookings = json['ShowTrustedBranchBookings']; Score = json['Score']; ApplicationId = json['ApplicationId']; iOSAppLink = json['iOSAppLink']; AndroidAppLink = json['AndroidAppLink']; return this; } Map toJson() => { 'BranchId': BranchId, 'BranchType': JsonConverters.toJson(BranchType,'BranchType',context!), 'Name': Name, 'Prefix': Prefix, 'CompanyName': CompanyName, 'CompanyAddress': CompanyAddress, 'CompanyOfficialName': CompanyOfficialName, 'DirectDebitReference': DirectDebitReference, 'FastDDReference': FastDDReference, 'FastDDPlatinumRef': FastDDPlatinumRef, 'Style': Style, 'PublicKey': PublicKey, 'PrivateKey': PrivateKey, 'TrialStart': JsonConverters.toJson(TrialStart,'DateTime',context!), 'TrialEnd': JsonConverters.toJson(TrialEnd,'DateTime',context!), 'PaymentStartDate': JsonConverters.toJson(PaymentStartDate,'DateTime',context!), 'InTrial': InTrial, 'UseFreeText': UseFreeText, 'FreeTextTitle': FreeTextTitle, 'UseMembershipTypes': UseMembershipTypes, 'DDUserName': DDUserName, 'DDPassword': DDPassword, 'DDServiceUser': DDServiceUser, 'DfcUserName': DfcUserName, 'DfcPassword': DfcPassword, 'DfcClubNumber': DfcClubNumber, 'CompanyEmail': CompanyEmail, 'SmsOriginator': SmsOriginator, 'LanguageId': LanguageId, 'VatRate': VatRate, 'SwipeAction': SwipeAction, 'Modules': JsonConverters.toJson(Modules,'Module',context!), 'UseCreditBalance': UseCreditBalance, 'AllowNegativeBalance': AllowNegativeBalance, 'DefaultCreditLimit': DefaultCreditLimit, 'ApplicationType': JsonConverters.toJson(ApplicationType,'ApplicationType',context!), 'ExternalProviderWarning': ExternalProviderWarning, 'Domain': Domain, 'MobileDomain': MobileDomain, 'OnlineBookingTimetableLimit': OnlineBookingTimetableLimit, 'OnlineBookingCancellationLimit': OnlineBookingCancellationLimit, 'OnlineBookingLimit': OnlineBookingLimit, 'Feature': JsonConverters.toJson(Feature,'Feature',context!), 'TimeZone': TimeZone, 'Culture': Culture, 'Country': Country, 'Iso3166Country': JsonConverters.toJson(Iso3166Country,'Iso3166Country',context!), 'CurrencyCulture': CurrencyCulture, 'ShowGoCardlessAd': ShowGoCardlessAd, 'GoCardlessSaving': GoCardlessSaving, 'SROAddress': SROAddress, 'MCAClubNo': MCAClubNo, 'MCAClubRef': MCAClubRef, 'TwilioNumber': TwilioNumber, 'Telephone': Telephone, 'Transferred': Transferred, 'OnlineBookingAllowNonActives': OnlineBookingAllowNonActives, 'MemberLimit': MemberLimit, 'SortCode': SortCode, 'AccountNumber': AccountNumber, 'Website': Website, 'SendSMSAppointmentRemindersDefault': SendSMSAppointmentRemindersDefault, 'SendSMSBookingReminders': SendSMSBookingReminders, 'GiftAid': GiftAid, 'GlobalBookingStartTime': JsonConverters.toJson(GlobalBookingStartTime,'Duration',context!), 'GlobalBookingEndTime': JsonConverters.toJson(GlobalBookingEndTime,'Duration',context!), 'BookingMinuteIncrements': BookingMinuteIncrements, 'CancelReason': CancelReason, 'CancelFurther': CancelFurther, 'CancelDate': JsonConverters.toJson(CancelDate,'DateTime',context!), 'DirectDebitFee': DirectDebitFee, 'CreditCardFee': CreditCardFee, 'SMSPriceAdjustment': SMSPriceAdjustment, 'BookingsPayLinkOnTrack': BookingsPayLinkOnTrack, 'AccessControlTimeLimit': AccessControlTimeLimit, 'Minimiser': JsonConverters.toJson(Minimiser,'BranchMinimiser',context!), 'AutoGenerateLicenses': AutoGenerateLicenses, 'Terms': Terms, 'FingerprintThreshold': FingerprintThreshold, 'FingerprintMatcherThreshold': FingerprintMatcherThreshold, 'AutoShutoff': AutoShutoff, 'PrimaryColors': PrimaryColors, 'HasColors': HasColors, 'PrimaryColor': PrimaryColor, 'SecondaryColor': SecondaryColor, 'BackgroundColor': BackgroundColor, 'HeaderTopColor': HeaderTopColor, 'HeaderBottomColor': HeaderBottomColor, 'SideLeftColor': SideLeftColor, 'SideRightColor': SideRightColor, 'SideFontColor': SideFontColor, 'SideFontActiveColor': SideFontActiveColor, 'ExtWebBackgroundColor': ExtWebBackgroundColor, 'ExtWebTextColor': ExtWebTextColor, 'ExtWebTintBackColor': ExtWebTintBackColor, 'ExtWebHighlightBackColor': ExtWebHighlightBackColor, 'ExtWebTabBackColor': ExtWebTabBackColor, 'HeadingColor': HeadingColor, 'ReportFormat': JsonConverters.toJson(ReportFormat,'ReportFormat',context!), 'FixPayments': FixPayments, 'FixPaymentSchedle': FixPaymentSchedle, 'AppFeature': JsonConverters.toJson(AppFeature,'AppFeature',context!), 'SignInScreenFeature': JsonConverters.toJson(SignInScreenFeature,'SignInScreenFeature',context!), 'AppOptions': AppOptions, 'CompanyDescription': CompanyDescription, 'Capacity': Capacity, 'MonthlySalesTarget': MonthlySalesTarget, 'BookingAccessTimeLimit': BookingAccessTimeLimit, 'Facebook': Facebook, 'Twitter': Twitter, 'Instagram': Instagram, 'YouTube': YouTube, 'TikTok': TikTok, 'Shopify': Shopify, 'MinimumMemberAge': MinimumMemberAge, 'TermsAndConditionsVersionDate': JsonConverters.toJson(TermsAndConditionsVersionDate,'DateTime',context!), 'TermsAndConditionsAcceptedDate': JsonConverters.toJson(TermsAndConditionsAcceptedDate,'DateTime',context!), 'TermsAndConditionsAccepted': TermsAndConditionsAccepted, 'SiteUrl': SiteUrl, 'IsUsingSmartDebit': IsUsingSmartDebit, 'IsUsingDfc': IsUsingDfc, 'IsSouthAfrica': IsSouthAfrica, 'SmartDebitConfigured': SmartDebitConfigured, 'DfcConfigured': DfcConfigured, 'UsingPaymentMethods': UsingPaymentMethods, 'SmsPrefix': SmsPrefix, 'Logo': Logo, 'LogoThumbnail': LogoThumbnail, 'LogoHash': LogoHash, 'SendMarketingInviteWhenMemberAdded': SendMarketingInviteWhenMemberAdded, 'SendMarketingInviteWhenMemberJoinedOnline': SendMarketingInviteWhenMemberJoinedOnline, 'MarketingComplianceManagedExternally': MarketingComplianceManagedExternally, 'OnlineBookingAllowWaitingList': OnlineBookingAllowWaitingList, 'OnlineMultiSiteEnabled': OnlineMultiSiteEnabled, 'CanBookOnline': CanBookOnline, 'PublicMembershipTypes': PublicMembershipTypes, 'TrustedBranches': TrustedBranches, 'IsAddingProspects': IsAddingProspects, 'IsSellingMemberships': IsSellingMemberships, 'IsCreatingTasks': IsCreatingTasks, 'IsCreatingAppointments': IsCreatingAppointments, 'IsBookingClasses': IsBookingClasses, 'IsRegisteringAttendance': IsRegisteringAttendance, 'IsSellingProducts': IsSellingProducts, 'IsSendingEmails': IsSendingEmails, 'IsSendingSMS': IsSendingSMS, 'IsUsingAutomation': IsUsingAutomation, 'DeductSessionsOnBooking': DeductSessionsOnBooking, 'ShowTrustedBranchBookings': ShowTrustedBranchBookings, 'Score': Score, 'ApplicationId': ApplicationId, 'iOSAppLink': iOSAppLink, 'AndroidAppLink': AndroidAppLink }; getTypeName() => "Branch"; TypeContext? context = _ctx; } class AccessControlMembers implements IConvertible { List? Members; List? Schedules; Branch? Branch; AccessControlMembers({this.Members,this.Schedules,this.Branch}); AccessControlMembers.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Members = JsonConverters.fromJson(json['Members'],'List',context!); Schedules = JsonConverters.fromJson(json['Schedules'],'List',context!); Branch = JsonConverters.fromJson(json['Branch'],'Branch',context!); return this; } Map toJson() => { 'Members': JsonConverters.toJson(Members,'List',context!), 'Schedules': JsonConverters.toJson(Schedules,'List',context!), 'Branch': JsonConverters.toJson(Branch,'Branch',context!) }; getTypeName() => "AccessControlMembers"; TypeContext? context = _ctx; } // @Route("/api/Member/GetMembersForAccessControl", "POST,GET") class GetMembersForAccessControlRequest implements IReturn, IConvertible { int? MemberId; DateTime? Date; GetMembersForAccessControlRequest({this.MemberId,this.Date}); GetMembersForAccessControlRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { MemberId = json['MemberId']; Date = JsonConverters.fromJson(json['Date'],'DateTime',context!); return this; } Map toJson() => { 'MemberId': MemberId, 'Date': JsonConverters.toJson(Date,'DateTime',context!) }; createResponse() => AccessControlMembers(); getResponseTypeName() => "AccessControlMembers"; getTypeName() => "GetMembersForAccessControlRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.clubmanagercentral.com', types: { 'ExternalStatus': TypeInfo(TypeOf.Enum, enumValues:ExternalStatus.values), 'MembershipState': TypeInfo(TypeOf.Enum, enumValues:MembershipState.values), 'MemberAccess': TypeInfo(TypeOf.Enum, enumValues:MemberAccess.values), 'AccessControlMember': TypeInfo(TypeOf.Class, create:() => AccessControlMember()), 'Schedule': TypeInfo(TypeOf.Class, create:() => Schedule()), 'Branch': TypeInfo(TypeOf.Class, create:() => Branch()), 'BranchType': TypeInfo(TypeOf.Class, create:() => BranchType()), 'Module': TypeInfo(TypeOf.Class, create:() => Module()), 'ApplicationType': TypeInfo(TypeOf.Class, create:() => ApplicationType()), 'Feature': TypeInfo(TypeOf.Class, create:() => Feature()), 'Iso3166Country': TypeInfo(TypeOf.Class, create:() => Iso3166Country()), 'BranchMinimiser': TypeInfo(TypeOf.Class, create:() => BranchMinimiser()), 'ReportFormat': TypeInfo(TypeOf.Class, create:() => ReportFormat()), 'AppFeature': TypeInfo(TypeOf.Class, create:() => AppFeature()), 'SignInScreenFeature': TypeInfo(TypeOf.Class, create:() => SignInScreenFeature()), 'AccessControlMembers': TypeInfo(TypeOf.Class, create:() => AccessControlMembers()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'List': TypeInfo(TypeOf.Class, create:() => []), 'GetMembersForAccessControlRequest': TypeInfo(TypeOf.Class, create:() => GetMembersForAccessControlRequest()), });