/* 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 //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: MemberService.GetMembersForAccessControlRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/api/Member/GetMembersForAccessControl", Verbs="POST,GET") public static class GetMembersForAccessControlRequest implements IReturn { public Integer MemberId = null; public Date Date = null; public Integer getMemberId() { return MemberId; } public GetMembersForAccessControlRequest setMemberId(Integer value) { this.MemberId = value; return this; } public Date getDate() { return Date; } public GetMembersForAccessControlRequest setDate(Date value) { this.Date = value; return this; } private static Object responseType = AccessControlMembers.class; public Object getResponseType() { return responseType; } } public static class AccessControlMembers { public ArrayList Members = null; public ArrayList Schedules = null; public Branch Branch = null; public ArrayList getMembers() { return Members; } public AccessControlMembers setMembers(ArrayList value) { this.Members = value; return this; } public ArrayList getSchedules() { return Schedules; } public AccessControlMembers setSchedules(ArrayList value) { this.Schedules = value; return this; } public Branch getBranch() { return Branch; } public AccessControlMembers setBranch(Branch value) { this.Branch = value; return this; } } public static enum ExternalStatus { Off, Active, Pending, CancelledInsideContract, CancelledOutsideContract, WithDebtRecovery, Suspended; } public static enum MembershipState { Prospect, Active, Expired, Cancelled, PaymentRequired, Suspended; } public static class AccessControlMember { public Integer MemberId = null; public Integer EnrolmentId = null; public Integer BranchId = null; public MembershipState MembershipState = null; public String MembershipNumber = null; public String CardNumber = null; public String Forenames = null; public String Surname = null; public Boolean MultiSiteAccess = null; public Boolean UseExternalStatus = null; public ExternalStatus ExternalStatus = null; public String MembershipTypeName = null; public Date StartDate = null; public Date EndDate = null; public Integer ScheduleId = null; public Integer SessionsRemaining = null; public Date LastAttendance = null; public MemberAccess MemberAccess = null; public Integer getMemberId() { return MemberId; } public AccessControlMember setMemberId(Integer value) { this.MemberId = value; return this; } public Integer getEnrolmentId() { return EnrolmentId; } public AccessControlMember setEnrolmentId(Integer value) { this.EnrolmentId = value; return this; } public Integer getBranchId() { return BranchId; } public AccessControlMember setBranchId(Integer value) { this.BranchId = value; return this; } public MembershipState getMembershipState() { return MembershipState; } public AccessControlMember setMembershipState(MembershipState value) { this.MembershipState = value; return this; } public String getMembershipNumber() { return MembershipNumber; } public AccessControlMember setMembershipNumber(String value) { this.MembershipNumber = value; return this; } public String getCardNumber() { return CardNumber; } public AccessControlMember setCardNumber(String value) { this.CardNumber = value; return this; } public String getForenames() { return Forenames; } public AccessControlMember setForenames(String value) { this.Forenames = value; return this; } public String getSurname() { return Surname; } public AccessControlMember setSurname(String value) { this.Surname = value; return this; } public Boolean isMultiSiteAccess() { return MultiSiteAccess; } public AccessControlMember setMultiSiteAccess(Boolean value) { this.MultiSiteAccess = value; return this; } public Boolean isUseExternalStatus() { return UseExternalStatus; } public AccessControlMember setUseExternalStatus(Boolean value) { this.UseExternalStatus = value; return this; } public ExternalStatus getExternalStatus() { return ExternalStatus; } public AccessControlMember setExternalStatus(ExternalStatus value) { this.ExternalStatus = value; return this; } public String getMembershipTypeName() { return MembershipTypeName; } public AccessControlMember setMembershipTypeName(String value) { this.MembershipTypeName = value; return this; } public Date getStartDate() { return StartDate; } public AccessControlMember setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public AccessControlMember setEndDate(Date value) { this.EndDate = value; return this; } public Integer getScheduleId() { return ScheduleId; } public AccessControlMember setScheduleId(Integer value) { this.ScheduleId = value; return this; } public Integer getSessionsRemaining() { return SessionsRemaining; } public AccessControlMember setSessionsRemaining(Integer value) { this.SessionsRemaining = value; return this; } public Date getLastAttendance() { return LastAttendance; } public AccessControlMember setLastAttendance(Date value) { this.LastAttendance = value; return this; } public MemberAccess getMemberAccess() { return MemberAccess; } public AccessControlMember setMemberAccess(MemberAccess value) { this.MemberAccess = value; return this; } } public static class Schedule { public Integer ScheduleId = null; public String Name = null; public String Description = null; public TimeSpan MondayFrom = null; public TimeSpan MondayTo = null; public TimeSpan TuesdayFrom = null; public TimeSpan TuesdayTo = null; public TimeSpan WednesdayFrom = null; public TimeSpan WednesdayTo = null; public TimeSpan ThursdayFrom = null; public TimeSpan ThursdayTo = null; public TimeSpan FridayFrom = null; public TimeSpan FridayTo = null; public TimeSpan SaturdayFrom = null; public TimeSpan SaturdayTo = null; public TimeSpan SundayFrom = null; public TimeSpan SundayTo = null; public Integer ScheduleType = null; public Integer BranchId = null; public Boolean Deleted = null; public Boolean Demo = null; public Boolean Monday = null; public Boolean Tuesday = null; public Boolean Wednesday = null; public Boolean Thursday = null; public Boolean Friday = null; public Boolean Saturday = null; public Boolean Sunday = null; public TimeSpan MondayTotalTime = null; public TimeSpan TuesdayTotalTime = null; public TimeSpan WednesdayTotalTime = null; public TimeSpan ThursdayTotalTime = null; public TimeSpan FridayTotalTime = null; public TimeSpan SaturdayTotalTime = null; public TimeSpan SundayTotalTime = null; public TimeSpan TotalTime = null; public Integer getScheduleId() { return ScheduleId; } public Schedule setScheduleId(Integer value) { this.ScheduleId = value; return this; } public String getName() { return Name; } public Schedule setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public Schedule setDescription(String value) { this.Description = value; return this; } public TimeSpan getMondayFrom() { return MondayFrom; } public Schedule setMondayFrom(TimeSpan value) { this.MondayFrom = value; return this; } public TimeSpan getMondayTo() { return MondayTo; } public Schedule setMondayTo(TimeSpan value) { this.MondayTo = value; return this; } public TimeSpan getTuesdayFrom() { return TuesdayFrom; } public Schedule setTuesdayFrom(TimeSpan value) { this.TuesdayFrom = value; return this; } public TimeSpan getTuesdayTo() { return TuesdayTo; } public Schedule setTuesdayTo(TimeSpan value) { this.TuesdayTo = value; return this; } public TimeSpan getWednesdayFrom() { return WednesdayFrom; } public Schedule setWednesdayFrom(TimeSpan value) { this.WednesdayFrom = value; return this; } public TimeSpan getWednesdayTo() { return WednesdayTo; } public Schedule setWednesdayTo(TimeSpan value) { this.WednesdayTo = value; return this; } public TimeSpan getThursdayFrom() { return ThursdayFrom; } public Schedule setThursdayFrom(TimeSpan value) { this.ThursdayFrom = value; return this; } public TimeSpan getThursdayTo() { return ThursdayTo; } public Schedule setThursdayTo(TimeSpan value) { this.ThursdayTo = value; return this; } public TimeSpan getFridayFrom() { return FridayFrom; } public Schedule setFridayFrom(TimeSpan value) { this.FridayFrom = value; return this; } public TimeSpan getFridayTo() { return FridayTo; } public Schedule setFridayTo(TimeSpan value) { this.FridayTo = value; return this; } public TimeSpan getSaturdayFrom() { return SaturdayFrom; } public Schedule setSaturdayFrom(TimeSpan value) { this.SaturdayFrom = value; return this; } public TimeSpan getSaturdayTo() { return SaturdayTo; } public Schedule setSaturdayTo(TimeSpan value) { this.SaturdayTo = value; return this; } public TimeSpan getSundayFrom() { return SundayFrom; } public Schedule setSundayFrom(TimeSpan value) { this.SundayFrom = value; return this; } public TimeSpan getSundayTo() { return SundayTo; } public Schedule setSundayTo(TimeSpan value) { this.SundayTo = value; return this; } public Integer getScheduleType() { return ScheduleType; } public Schedule setScheduleType(Integer value) { this.ScheduleType = value; return this; } public Integer getBranchId() { return BranchId; } public Schedule setBranchId(Integer value) { this.BranchId = value; return this; } public Boolean isDeleted() { return Deleted; } public Schedule setDeleted(Boolean value) { this.Deleted = value; return this; } public Boolean isDemo() { return Demo; } public Schedule setDemo(Boolean value) { this.Demo = value; return this; } public Boolean isMonday() { return Monday; } public Schedule setMonday(Boolean value) { this.Monday = value; return this; } public Boolean isTuesday() { return Tuesday; } public Schedule setTuesday(Boolean value) { this.Tuesday = value; return this; } public Boolean isWednesday() { return Wednesday; } public Schedule setWednesday(Boolean value) { this.Wednesday = value; return this; } public Boolean isThursday() { return Thursday; } public Schedule setThursday(Boolean value) { this.Thursday = value; return this; } public Boolean isFriday() { return Friday; } public Schedule setFriday(Boolean value) { this.Friday = value; return this; } public Boolean isSaturday() { return Saturday; } public Schedule setSaturday(Boolean value) { this.Saturday = value; return this; } public Boolean isSunday() { return Sunday; } public Schedule setSunday(Boolean value) { this.Sunday = value; return this; } public TimeSpan getMondayTotalTime() { return MondayTotalTime; } public Schedule setMondayTotalTime(TimeSpan value) { this.MondayTotalTime = value; return this; } public TimeSpan getTuesdayTotalTime() { return TuesdayTotalTime; } public Schedule setTuesdayTotalTime(TimeSpan value) { this.TuesdayTotalTime = value; return this; } public TimeSpan getWednesdayTotalTime() { return WednesdayTotalTime; } public Schedule setWednesdayTotalTime(TimeSpan value) { this.WednesdayTotalTime = value; return this; } public TimeSpan getThursdayTotalTime() { return ThursdayTotalTime; } public Schedule setThursdayTotalTime(TimeSpan value) { this.ThursdayTotalTime = value; return this; } public TimeSpan getFridayTotalTime() { return FridayTotalTime; } public Schedule setFridayTotalTime(TimeSpan value) { this.FridayTotalTime = value; return this; } public TimeSpan getSaturdayTotalTime() { return SaturdayTotalTime; } public Schedule setSaturdayTotalTime(TimeSpan value) { this.SaturdayTotalTime = value; return this; } public TimeSpan getSundayTotalTime() { return SundayTotalTime; } public Schedule setSundayTotalTime(TimeSpan value) { this.SundayTotalTime = value; return this; } public TimeSpan getTotalTime() { return TotalTime; } public Schedule setTotalTime(TimeSpan value) { this.TotalTime = value; return this; } } public static enum MemberAccess { AccessAllowed(1), NoAccess(2), NoMultiSiteAccess(3), NoSessions(4), NoScheduleAccess(5), NoAccessTimeLimitExceeded(6), Suspended(7); private final int value; MemberAccess(final int intValue) { value = intValue; } public int getValue() { return value; } } public static class Branch { public Integer BranchId = null; public BranchType BranchType = null; public String Name = null; public String Prefix = null; public String CompanyName = null; public String CompanyAddress = null; public String CompanyOfficialName = null; public String DirectDebitReference = null; public String FastDDReference = null; public String FastDDPlatinumRef = null; public String Style = null; public UUID PublicKey = null; public UUID PrivateKey = null; public Date TrialStart = null; public Date TrialEnd = null; public Date PaymentStartDate = null; public Boolean InTrial = null; public Boolean UseFreeText = null; public String FreeTextTitle = null; public Boolean UseMembershipTypes = null; public String DDUserName = null; public String DDPassword = null; public String DDServiceUser = null; public String DfcUserName = null; public String DfcPassword = null; public String DfcClubNumber = null; public String CompanyEmail = null; public String SmsOriginator = null; public Integer LanguageId = null; public BigDecimal VatRate = null; public Integer SwipeAction = null; public Module Modules = null; public Boolean UseCreditBalance = null; public Boolean AllowNegativeBalance = null; public BigDecimal DefaultCreditLimit = null; public ApplicationType ApplicationType = null; public String ExternalProviderWarning = null; public String Domain = null; public String MobileDomain = null; public Integer OnlineBookingTimetableLimit = null; public Integer OnlineBookingCancellationLimit = null; public Integer OnlineBookingLimit = null; public Feature Feature = null; public String TimeZone = null; public String Culture = null; public String Country = null; public Iso3166Country Iso3166Country = null; public String CurrencyCulture = null; public Boolean ShowGoCardlessAd = null; public BigDecimal GoCardlessSaving = null; public String SROAddress = null; public String MCAClubNo = null; public String MCAClubRef = null; public String TwilioNumber = null; public String Telephone = null; public Boolean Transferred = null; public Boolean OnlineBookingAllowNonActives = null; public Integer MemberLimit = null; public String SortCode = null; public String AccountNumber = null; public String Website = null; public Boolean SendSMSAppointmentRemindersDefault = null; public Boolean SendSMSBookingReminders = null; public Boolean GiftAid = null; public TimeSpan GlobalBookingStartTime = null; public TimeSpan GlobalBookingEndTime = null; public Integer BookingMinuteIncrements = null; public String CancelReason = null; public String CancelFurther = null; public Date CancelDate = null; public BigDecimal DirectDebitFee = null; public BigDecimal CreditCardFee = null; public BigDecimal SMSPriceAdjustment = null; public Boolean BookingsPayLinkOnTrack = null; public Integer AccessControlTimeLimit = null; public BranchMinimiser Minimiser = null; public Boolean AutoGenerateLicenses = null; public String Terms = null; public Integer FingerprintThreshold = null; public Integer FingerprintMatcherThreshold = null; public Boolean AutoShutoff = null; public String PrimaryColors = null; public Boolean HasColors = null; public String PrimaryColor = null; public String SecondaryColor = null; public String BackgroundColor = null; public String HeaderTopColor = null; public String HeaderBottomColor = null; public String SideLeftColor = null; public String SideRightColor = null; public String SideFontColor = null; public String SideFontActiveColor = null; public String ExtWebBackgroundColor = null; public String ExtWebTextColor = null; public String ExtWebTintBackColor = null; public String ExtWebHighlightBackColor = null; public String ExtWebTabBackColor = null; public String HeadingColor = null; public ReportFormat ReportFormat = null; public Boolean FixPayments = null; public String FixPaymentSchedle = null; public AppFeature AppFeature = null; public SignInScreenFeature SignInScreenFeature = null; public String AppOptions = null; public String CompanyDescription = null; public Integer Capacity = null; public Integer MonthlySalesTarget = null; public Integer BookingAccessTimeLimit = null; public String Facebook = null; public String Twitter = null; public String Instagram = null; public String YouTube = null; public String TikTok = null; public String Shopify = null; public Integer MinimumMemberAge = null; public Date TermsAndConditionsVersionDate = null; public Date TermsAndConditionsAcceptedDate = null; public Boolean TermsAndConditionsAccepted = null; public String SiteUrl = null; public Boolean IsUsingSmartDebit = null; public Boolean IsUsingDfc = null; public Boolean IsSouthAfrica = null; public Boolean SmartDebitConfigured = null; public Boolean DfcConfigured = null; public Boolean UsingPaymentMethods = null; public String SmsPrefix = null; public String Logo = null; public String LogoThumbnail = null; public String LogoHash = null; public Boolean SendMarketingInviteWhenMemberAdded = null; public Boolean SendMarketingInviteWhenMemberJoinedOnline = null; public Boolean MarketingComplianceManagedExternally = null; public Boolean OnlineBookingAllowWaitingList = null; public Boolean OnlineMultiSiteEnabled = null; public Boolean CanBookOnline = null; public Integer PublicMembershipTypes = null; public Integer TrustedBranches = null; public Boolean IsAddingProspects = null; public Boolean IsSellingMemberships = null; public Boolean IsCreatingTasks = null; public Boolean IsCreatingAppointments = null; public Boolean IsBookingClasses = null; public Boolean IsRegisteringAttendance = null; public Boolean IsSellingProducts = null; public Boolean IsSendingEmails = null; public Boolean IsSendingSMS = null; public Boolean IsUsingAutomation = null; public Boolean DeductSessionsOnBooking = null; public Boolean ShowTrustedBranchBookings = null; public Integer Score = null; public String ApplicationId = null; public String iOSAppLink = null; public String AndroidAppLink = null; public Integer getBranchId() { return BranchId; } public Branch setBranchId(Integer value) { this.BranchId = value; return this; } public BranchType getBranchType() { return BranchType; } public Branch setBranchType(BranchType value) { this.BranchType = value; return this; } public String getName() { return Name; } public Branch setName(String value) { this.Name = value; return this; } public String getPrefix() { return Prefix; } public Branch setPrefix(String value) { this.Prefix = value; return this; } public String getCompanyName() { return CompanyName; } public Branch setCompanyName(String value) { this.CompanyName = value; return this; } public String getCompanyAddress() { return CompanyAddress; } public Branch setCompanyAddress(String value) { this.CompanyAddress = value; return this; } public String getCompanyOfficialName() { return CompanyOfficialName; } public Branch setCompanyOfficialName(String value) { this.CompanyOfficialName = value; return this; } public String getDirectDebitReference() { return DirectDebitReference; } public Branch setDirectDebitReference(String value) { this.DirectDebitReference = value; return this; } public String getFastDDReference() { return FastDDReference; } public Branch setFastDDReference(String value) { this.FastDDReference = value; return this; } public String getFastDDPlatinumRef() { return FastDDPlatinumRef; } public Branch setFastDDPlatinumRef(String value) { this.FastDDPlatinumRef = value; return this; } public String getStyle() { return Style; } public Branch setStyle(String value) { this.Style = value; return this; } public UUID getPublicKey() { return PublicKey; } public Branch setPublicKey(UUID value) { this.PublicKey = value; return this; } public UUID getPrivateKey() { return PrivateKey; } public Branch setPrivateKey(UUID value) { this.PrivateKey = value; return this; } public Date getTrialStart() { return TrialStart; } public Branch setTrialStart(Date value) { this.TrialStart = value; return this; } public Date getTrialEnd() { return TrialEnd; } public Branch setTrialEnd(Date value) { this.TrialEnd = value; return this; } public Date getPaymentStartDate() { return PaymentStartDate; } public Branch setPaymentStartDate(Date value) { this.PaymentStartDate = value; return this; } public Boolean isInTrial() { return InTrial; } public Branch setInTrial(Boolean value) { this.InTrial = value; return this; } public Boolean isUseFreeText() { return UseFreeText; } public Branch setUseFreeText(Boolean value) { this.UseFreeText = value; return this; } public String getFreeTextTitle() { return FreeTextTitle; } public Branch setFreeTextTitle(String value) { this.FreeTextTitle = value; return this; } public Boolean isUseMembershipTypes() { return UseMembershipTypes; } public Branch setUseMembershipTypes(Boolean value) { this.UseMembershipTypes = value; return this; } public String getDdUserName() { return DDUserName; } public Branch setDdUserName(String value) { this.DDUserName = value; return this; } public String getDdPassword() { return DDPassword; } public Branch setDdPassword(String value) { this.DDPassword = value; return this; } public String getDdServiceUser() { return DDServiceUser; } public Branch setDdServiceUser(String value) { this.DDServiceUser = value; return this; } public String getDfcUserName() { return DfcUserName; } public Branch setDfcUserName(String value) { this.DfcUserName = value; return this; } public String getDfcPassword() { return DfcPassword; } public Branch setDfcPassword(String value) { this.DfcPassword = value; return this; } public String getDfcClubNumber() { return DfcClubNumber; } public Branch setDfcClubNumber(String value) { this.DfcClubNumber = value; return this; } public String getCompanyEmail() { return CompanyEmail; } public Branch setCompanyEmail(String value) { this.CompanyEmail = value; return this; } public String getSmsOriginator() { return SmsOriginator; } public Branch setSmsOriginator(String value) { this.SmsOriginator = value; return this; } public Integer getLanguageId() { return LanguageId; } public Branch setLanguageId(Integer value) { this.LanguageId = value; return this; } public BigDecimal getVatRate() { return VatRate; } public Branch setVatRate(BigDecimal value) { this.VatRate = value; return this; } public Integer getSwipeAction() { return SwipeAction; } public Branch setSwipeAction(Integer value) { this.SwipeAction = value; return this; } public Module getModules() { return Modules; } public Branch setModules(Module value) { this.Modules = value; return this; } public Boolean isUseCreditBalance() { return UseCreditBalance; } public Branch setUseCreditBalance(Boolean value) { this.UseCreditBalance = value; return this; } public Boolean isAllowNegativeBalance() { return AllowNegativeBalance; } public Branch setAllowNegativeBalance(Boolean value) { this.AllowNegativeBalance = value; return this; } public BigDecimal getDefaultCreditLimit() { return DefaultCreditLimit; } public Branch setDefaultCreditLimit(BigDecimal value) { this.DefaultCreditLimit = value; return this; } public ApplicationType getApplicationType() { return ApplicationType; } public Branch setApplicationType(ApplicationType value) { this.ApplicationType = value; return this; } public String getExternalProviderWarning() { return ExternalProviderWarning; } public Branch setExternalProviderWarning(String value) { this.ExternalProviderWarning = value; return this; } public String getDomain() { return Domain; } public Branch setDomain(String value) { this.Domain = value; return this; } public String getMobileDomain() { return MobileDomain; } public Branch setMobileDomain(String value) { this.MobileDomain = value; return this; } public Integer getOnlineBookingTimetableLimit() { return OnlineBookingTimetableLimit; } public Branch setOnlineBookingTimetableLimit(Integer value) { this.OnlineBookingTimetableLimit = value; return this; } public Integer getOnlineBookingCancellationLimit() { return OnlineBookingCancellationLimit; } public Branch setOnlineBookingCancellationLimit(Integer value) { this.OnlineBookingCancellationLimit = value; return this; } public Integer getOnlineBookingLimit() { return OnlineBookingLimit; } public Branch setOnlineBookingLimit(Integer value) { this.OnlineBookingLimit = value; return this; } public Feature getFeature() { return Feature; } public Branch setFeature(Feature value) { this.Feature = value; return this; } public String getTimeZone() { return TimeZone; } public Branch setTimeZone(String value) { this.TimeZone = value; return this; } public String getCulture() { return Culture; } public Branch setCulture(String value) { this.Culture = value; return this; } public String getCountry() { return Country; } public Branch setCountry(String value) { this.Country = value; return this; } public Iso3166Country getIso3166Country() { return Iso3166Country; } public Branch setIso3166Country(Iso3166Country value) { this.Iso3166Country = value; return this; } public String getCurrencyCulture() { return CurrencyCulture; } public Branch setCurrencyCulture(String value) { this.CurrencyCulture = value; return this; } public Boolean isShowGoCardlessAd() { return ShowGoCardlessAd; } public Branch setShowGoCardlessAd(Boolean value) { this.ShowGoCardlessAd = value; return this; } public BigDecimal getGoCardlessSaving() { return GoCardlessSaving; } public Branch setGoCardlessSaving(BigDecimal value) { this.GoCardlessSaving = value; return this; } public String getSroAddress() { return SROAddress; } public Branch setSroAddress(String value) { this.SROAddress = value; return this; } public String getMcaClubNo() { return MCAClubNo; } public Branch setMcaClubNo(String value) { this.MCAClubNo = value; return this; } public String getMcaClubRef() { return MCAClubRef; } public Branch setMcaClubRef(String value) { this.MCAClubRef = value; return this; } public String getTwilioNumber() { return TwilioNumber; } public Branch setTwilioNumber(String value) { this.TwilioNumber = value; return this; } public String getTelephone() { return Telephone; } public Branch setTelephone(String value) { this.Telephone = value; return this; } public Boolean isTransferred() { return Transferred; } public Branch setTransferred(Boolean value) { this.Transferred = value; return this; } public Boolean isOnlineBookingAllowNonActives() { return OnlineBookingAllowNonActives; } public Branch setOnlineBookingAllowNonActives(Boolean value) { this.OnlineBookingAllowNonActives = value; return this; } public Integer getMemberLimit() { return MemberLimit; } public Branch setMemberLimit(Integer value) { this.MemberLimit = value; return this; } public String getSortCode() { return SortCode; } public Branch setSortCode(String value) { this.SortCode = value; return this; } public String getAccountNumber() { return AccountNumber; } public Branch setAccountNumber(String value) { this.AccountNumber = value; return this; } public String getWebsite() { return Website; } public Branch setWebsite(String value) { this.Website = value; return this; } public Boolean isSendSMSAppointmentRemindersDefault() { return SendSMSAppointmentRemindersDefault; } public Branch setSendSMSAppointmentRemindersDefault(Boolean value) { this.SendSMSAppointmentRemindersDefault = value; return this; } public Boolean isSendSMSBookingReminders() { return SendSMSBookingReminders; } public Branch setSendSMSBookingReminders(Boolean value) { this.SendSMSBookingReminders = value; return this; } public Boolean isGiftAid() { return GiftAid; } public Branch setGiftAid(Boolean value) { this.GiftAid = value; return this; } public TimeSpan getGlobalBookingStartTime() { return GlobalBookingStartTime; } public Branch setGlobalBookingStartTime(TimeSpan value) { this.GlobalBookingStartTime = value; return this; } public TimeSpan getGlobalBookingEndTime() { return GlobalBookingEndTime; } public Branch setGlobalBookingEndTime(TimeSpan value) { this.GlobalBookingEndTime = value; return this; } public Integer getBookingMinuteIncrements() { return BookingMinuteIncrements; } public Branch setBookingMinuteIncrements(Integer value) { this.BookingMinuteIncrements = value; return this; } public String getCancelReason() { return CancelReason; } public Branch setCancelReason(String value) { this.CancelReason = value; return this; } public String getCancelFurther() { return CancelFurther; } public Branch setCancelFurther(String value) { this.CancelFurther = value; return this; } public Date getCancelDate() { return CancelDate; } public Branch setCancelDate(Date value) { this.CancelDate = value; return this; } public BigDecimal getDirectDebitFee() { return DirectDebitFee; } public Branch setDirectDebitFee(BigDecimal value) { this.DirectDebitFee = value; return this; } public BigDecimal getCreditCardFee() { return CreditCardFee; } public Branch setCreditCardFee(BigDecimal value) { this.CreditCardFee = value; return this; } public BigDecimal getSmsPriceAdjustment() { return SMSPriceAdjustment; } public Branch setSmsPriceAdjustment(BigDecimal value) { this.SMSPriceAdjustment = value; return this; } public Boolean isBookingsPayLinkOnTrack() { return BookingsPayLinkOnTrack; } public Branch setBookingsPayLinkOnTrack(Boolean value) { this.BookingsPayLinkOnTrack = value; return this; } public Integer getAccessControlTimeLimit() { return AccessControlTimeLimit; } public Branch setAccessControlTimeLimit(Integer value) { this.AccessControlTimeLimit = value; return this; } public BranchMinimiser getMinimiser() { return Minimiser; } public Branch setMinimiser(BranchMinimiser value) { this.Minimiser = value; return this; } public Boolean isAutoGenerateLicenses() { return AutoGenerateLicenses; } public Branch setAutoGenerateLicenses(Boolean value) { this.AutoGenerateLicenses = value; return this; } public String getTerms() { return Terms; } public Branch setTerms(String value) { this.Terms = value; return this; } public Integer getFingerprintThreshold() { return FingerprintThreshold; } public Branch setFingerprintThreshold(Integer value) { this.FingerprintThreshold = value; return this; } public Integer getFingerprintMatcherThreshold() { return FingerprintMatcherThreshold; } public Branch setFingerprintMatcherThreshold(Integer value) { this.FingerprintMatcherThreshold = value; return this; } public Boolean isAutoShutoff() { return AutoShutoff; } public Branch setAutoShutoff(Boolean value) { this.AutoShutoff = value; return this; } public String getPrimaryColors() { return PrimaryColors; } public Branch setPrimaryColors(String value) { this.PrimaryColors = value; return this; } public Boolean isHasColors() { return HasColors; } public Branch setHasColors(Boolean value) { this.HasColors = value; return this; } public String getPrimaryColor() { return PrimaryColor; } public Branch setPrimaryColor(String value) { this.PrimaryColor = value; return this; } public String getSecondaryColor() { return SecondaryColor; } public Branch setSecondaryColor(String value) { this.SecondaryColor = value; return this; } public String getBackgroundColor() { return BackgroundColor; } public Branch setBackgroundColor(String value) { this.BackgroundColor = value; return this; } public String getHeaderTopColor() { return HeaderTopColor; } public Branch setHeaderTopColor(String value) { this.HeaderTopColor = value; return this; } public String getHeaderBottomColor() { return HeaderBottomColor; } public Branch setHeaderBottomColor(String value) { this.HeaderBottomColor = value; return this; } public String getSideLeftColor() { return SideLeftColor; } public Branch setSideLeftColor(String value) { this.SideLeftColor = value; return this; } public String getSideRightColor() { return SideRightColor; } public Branch setSideRightColor(String value) { this.SideRightColor = value; return this; } public String getSideFontColor() { return SideFontColor; } public Branch setSideFontColor(String value) { this.SideFontColor = value; return this; } public String getSideFontActiveColor() { return SideFontActiveColor; } public Branch setSideFontActiveColor(String value) { this.SideFontActiveColor = value; return this; } public String getExtWebBackgroundColor() { return ExtWebBackgroundColor; } public Branch setExtWebBackgroundColor(String value) { this.ExtWebBackgroundColor = value; return this; } public String getExtWebTextColor() { return ExtWebTextColor; } public Branch setExtWebTextColor(String value) { this.ExtWebTextColor = value; return this; } public String getExtWebTintBackColor() { return ExtWebTintBackColor; } public Branch setExtWebTintBackColor(String value) { this.ExtWebTintBackColor = value; return this; } public String getExtWebHighlightBackColor() { return ExtWebHighlightBackColor; } public Branch setExtWebHighlightBackColor(String value) { this.ExtWebHighlightBackColor = value; return this; } public String getExtWebTabBackColor() { return ExtWebTabBackColor; } public Branch setExtWebTabBackColor(String value) { this.ExtWebTabBackColor = value; return this; } public String getHeadingColor() { return HeadingColor; } public Branch setHeadingColor(String value) { this.HeadingColor = value; return this; } public ReportFormat getReportFormat() { return ReportFormat; } public Branch setReportFormat(ReportFormat value) { this.ReportFormat = value; return this; } public Boolean isFixPayments() { return FixPayments; } public Branch setFixPayments(Boolean value) { this.FixPayments = value; return this; } public String getFixPaymentSchedle() { return FixPaymentSchedle; } public Branch setFixPaymentSchedle(String value) { this.FixPaymentSchedle = value; return this; } public AppFeature getAppFeature() { return AppFeature; } public Branch setAppFeature(AppFeature value) { this.AppFeature = value; return this; } public SignInScreenFeature getSignInScreenFeature() { return SignInScreenFeature; } public Branch setSignInScreenFeature(SignInScreenFeature value) { this.SignInScreenFeature = value; return this; } public String getAppOptions() { return AppOptions; } public Branch setAppOptions(String value) { this.AppOptions = value; return this; } public String getCompanyDescription() { return CompanyDescription; } public Branch setCompanyDescription(String value) { this.CompanyDescription = value; return this; } public Integer getCapacity() { return Capacity; } public Branch setCapacity(Integer value) { this.Capacity = value; return this; } public Integer getMonthlySalesTarget() { return MonthlySalesTarget; } public Branch setMonthlySalesTarget(Integer value) { this.MonthlySalesTarget = value; return this; } public Integer getBookingAccessTimeLimit() { return BookingAccessTimeLimit; } public Branch setBookingAccessTimeLimit(Integer value) { this.BookingAccessTimeLimit = value; return this; } public String getFacebook() { return Facebook; } public Branch setFacebook(String value) { this.Facebook = value; return this; } public String getTwitter() { return Twitter; } public Branch setTwitter(String value) { this.Twitter = value; return this; } public String getInstagram() { return Instagram; } public Branch setInstagram(String value) { this.Instagram = value; return this; } public String getYouTube() { return YouTube; } public Branch setYouTube(String value) { this.YouTube = value; return this; } public String getTikTok() { return TikTok; } public Branch setTikTok(String value) { this.TikTok = value; return this; } public String getShopify() { return Shopify; } public Branch setShopify(String value) { this.Shopify = value; return this; } public Integer getMinimumMemberAge() { return MinimumMemberAge; } public Branch setMinimumMemberAge(Integer value) { this.MinimumMemberAge = value; return this; } public Date getTermsAndConditionsVersionDate() { return TermsAndConditionsVersionDate; } public Branch setTermsAndConditionsVersionDate(Date value) { this.TermsAndConditionsVersionDate = value; return this; } public Date getTermsAndConditionsAcceptedDate() { return TermsAndConditionsAcceptedDate; } public Branch setTermsAndConditionsAcceptedDate(Date value) { this.TermsAndConditionsAcceptedDate = value; return this; } public Boolean isTermsAndConditionsAccepted() { return TermsAndConditionsAccepted; } public Branch setTermsAndConditionsAccepted(Boolean value) { this.TermsAndConditionsAccepted = value; return this; } public String getSiteUrl() { return SiteUrl; } public Branch setSiteUrl(String value) { this.SiteUrl = value; return this; } public Boolean getIsUsingSmartDebit() { return IsUsingSmartDebit; } public Branch setIsUsingSmartDebit(Boolean value) { this.IsUsingSmartDebit = value; return this; } public Boolean getIsUsingDfc() { return IsUsingDfc; } public Branch setIsUsingDfc(Boolean value) { this.IsUsingDfc = value; return this; } public Boolean getIsSouthAfrica() { return IsSouthAfrica; } public Branch setIsSouthAfrica(Boolean value) { this.IsSouthAfrica = value; return this; } public Boolean isSmartDebitConfigured() { return SmartDebitConfigured; } public Branch setSmartDebitConfigured(Boolean value) { this.SmartDebitConfigured = value; return this; } public Boolean isDfcConfigured() { return DfcConfigured; } public Branch setDfcConfigured(Boolean value) { this.DfcConfigured = value; return this; } public Boolean isUsingPaymentMethods() { return UsingPaymentMethods; } public Branch setUsingPaymentMethods(Boolean value) { this.UsingPaymentMethods = value; return this; } public String getSmsPrefix() { return SmsPrefix; } public Branch setSmsPrefix(String value) { this.SmsPrefix = value; return this; } public String getLogo() { return Logo; } public Branch setLogo(String value) { this.Logo = value; return this; } public String getLogoThumbnail() { return LogoThumbnail; } public Branch setLogoThumbnail(String value) { this.LogoThumbnail = value; return this; } public String getLogoHash() { return LogoHash; } public Branch setLogoHash(String value) { this.LogoHash = value; return this; } public Boolean isSendMarketingInviteWhenMemberAdded() { return SendMarketingInviteWhenMemberAdded; } public Branch setSendMarketingInviteWhenMemberAdded(Boolean value) { this.SendMarketingInviteWhenMemberAdded = value; return this; } public Boolean isSendMarketingInviteWhenMemberJoinedOnline() { return SendMarketingInviteWhenMemberJoinedOnline; } public Branch setSendMarketingInviteWhenMemberJoinedOnline(Boolean value) { this.SendMarketingInviteWhenMemberJoinedOnline = value; return this; } public Boolean isMarketingComplianceManagedExternally() { return MarketingComplianceManagedExternally; } public Branch setMarketingComplianceManagedExternally(Boolean value) { this.MarketingComplianceManagedExternally = value; return this; } public Boolean isOnlineBookingAllowWaitingList() { return OnlineBookingAllowWaitingList; } public Branch setOnlineBookingAllowWaitingList(Boolean value) { this.OnlineBookingAllowWaitingList = value; return this; } public Boolean isOnlineMultiSiteEnabled() { return OnlineMultiSiteEnabled; } public Branch setOnlineMultiSiteEnabled(Boolean value) { this.OnlineMultiSiteEnabled = value; return this; } public Boolean isCanBookOnline() { return CanBookOnline; } public Branch setCanBookOnline(Boolean value) { this.CanBookOnline = value; return this; } public Integer getPublicMembershipTypes() { return PublicMembershipTypes; } public Branch setPublicMembershipTypes(Integer value) { this.PublicMembershipTypes = value; return this; } public Integer getTrustedBranches() { return TrustedBranches; } public Branch setTrustedBranches(Integer value) { this.TrustedBranches = value; return this; } public Boolean getIsAddingProspects() { return IsAddingProspects; } public Branch setIsAddingProspects(Boolean value) { this.IsAddingProspects = value; return this; } public Boolean getIsSellingMemberships() { return IsSellingMemberships; } public Branch setIsSellingMemberships(Boolean value) { this.IsSellingMemberships = value; return this; } public Boolean getIsCreatingTasks() { return IsCreatingTasks; } public Branch setIsCreatingTasks(Boolean value) { this.IsCreatingTasks = value; return this; } public Boolean getIsCreatingAppointments() { return IsCreatingAppointments; } public Branch setIsCreatingAppointments(Boolean value) { this.IsCreatingAppointments = value; return this; } public Boolean getIsBookingClasses() { return IsBookingClasses; } public Branch setIsBookingClasses(Boolean value) { this.IsBookingClasses = value; return this; } public Boolean getIsRegisteringAttendance() { return IsRegisteringAttendance; } public Branch setIsRegisteringAttendance(Boolean value) { this.IsRegisteringAttendance = value; return this; } public Boolean getIsSellingProducts() { return IsSellingProducts; } public Branch setIsSellingProducts(Boolean value) { this.IsSellingProducts = value; return this; } public Boolean getIsSendingEmails() { return IsSendingEmails; } public Branch setIsSendingEmails(Boolean value) { this.IsSendingEmails = value; return this; } public Boolean getIsSendingSMS() { return IsSendingSMS; } public Branch setIsSendingSMS(Boolean value) { this.IsSendingSMS = value; return this; } public Boolean getIsUsingAutomation() { return IsUsingAutomation; } public Branch setIsUsingAutomation(Boolean value) { this.IsUsingAutomation = value; return this; } public Boolean isDeductSessionsOnBooking() { return DeductSessionsOnBooking; } public Branch setDeductSessionsOnBooking(Boolean value) { this.DeductSessionsOnBooking = value; return this; } public Boolean isShowTrustedBranchBookings() { return ShowTrustedBranchBookings; } public Branch setShowTrustedBranchBookings(Boolean value) { this.ShowTrustedBranchBookings = value; return this; } public Integer getScore() { return Score; } public Branch setScore(Integer value) { this.Score = value; return this; } public String getApplicationId() { return ApplicationId; } public Branch setApplicationId(String value) { this.ApplicationId = value; return this; } public String getIOSAppLink() { return iOSAppLink; } public Branch setIOSAppLink(String value) { this.iOSAppLink = value; return this; } public String getAndroidAppLink() { return AndroidAppLink; } public Branch setAndroidAppLink(String value) { this.AndroidAppLink = value; return this; } } }