/* Options: Date: 2025-04-04 17:51:06 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: Command.AddMembershipCommandRequest.* //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/Command/AddMembershipCommand", Verbs="POST") public static class AddMembershipCommandRequest implements IReturn { public Integer MemberId = null; public Integer UserId = null; public Integer MembershipTypeId = null; public Date StartDate = null; public PreviousMembershipAction PreviousMembershipAction = null; public Boolean ExternallyCreated = null; public Boolean IsOnlineJoining = null; public MembershipType MembershipType = null; public Boolean CreateRecurringPaymentsOnly = null; public ArrayList MembershipReviewAttributes = null; public ArrayList RegistrationAttributes = null; public Boolean FeeRecurrenceDisabled = null; public Boolean Expired = null; public Date EndDate = null; public Integer RefererMemberId = null; public Integer PromotionId = null; public BigDecimal RecurringAmount = null; public Date RecurringStartDate = null; public Integer PaymentMethodId = null; public Integer BookingId = null; public Integer getMemberId() { return MemberId; } public AddMembershipCommandRequest setMemberId(Integer value) { this.MemberId = value; return this; } public Integer getUserId() { return UserId; } public AddMembershipCommandRequest setUserId(Integer value) { this.UserId = value; return this; } public Integer getMembershipTypeId() { return MembershipTypeId; } public AddMembershipCommandRequest setMembershipTypeId(Integer value) { this.MembershipTypeId = value; return this; } public Date getStartDate() { return StartDate; } public AddMembershipCommandRequest setStartDate(Date value) { this.StartDate = value; return this; } public PreviousMembershipAction getPreviousMembershipAction() { return PreviousMembershipAction; } public AddMembershipCommandRequest setPreviousMembershipAction(PreviousMembershipAction value) { this.PreviousMembershipAction = value; return this; } public Boolean isExternallyCreated() { return ExternallyCreated; } public AddMembershipCommandRequest setExternallyCreated(Boolean value) { this.ExternallyCreated = value; return this; } public Boolean getIsOnlineJoining() { return IsOnlineJoining; } public AddMembershipCommandRequest setIsOnlineJoining(Boolean value) { this.IsOnlineJoining = value; return this; } public MembershipType getMembershipType() { return MembershipType; } public AddMembershipCommandRequest setMembershipType(MembershipType value) { this.MembershipType = value; return this; } public Boolean isCreateRecurringPaymentsOnly() { return CreateRecurringPaymentsOnly; } public AddMembershipCommandRequest setCreateRecurringPaymentsOnly(Boolean value) { this.CreateRecurringPaymentsOnly = value; return this; } public ArrayList getMembershipReviewAttributes() { return MembershipReviewAttributes; } public AddMembershipCommandRequest setMembershipReviewAttributes(ArrayList value) { this.MembershipReviewAttributes = value; return this; } public ArrayList getRegistrationAttributes() { return RegistrationAttributes; } public AddMembershipCommandRequest setRegistrationAttributes(ArrayList value) { this.RegistrationAttributes = value; return this; } public Boolean isFeeRecurrenceDisabled() { return FeeRecurrenceDisabled; } public AddMembershipCommandRequest setFeeRecurrenceDisabled(Boolean value) { this.FeeRecurrenceDisabled = value; return this; } public Boolean isExpired() { return Expired; } public AddMembershipCommandRequest setExpired(Boolean value) { this.Expired = value; return this; } public Date getEndDate() { return EndDate; } public AddMembershipCommandRequest setEndDate(Date value) { this.EndDate = value; return this; } public Integer getRefererMemberId() { return RefererMemberId; } public AddMembershipCommandRequest setRefererMemberId(Integer value) { this.RefererMemberId = value; return this; } public Integer getPromotionId() { return PromotionId; } public AddMembershipCommandRequest setPromotionId(Integer value) { this.PromotionId = value; return this; } public BigDecimal getRecurringAmount() { return RecurringAmount; } public AddMembershipCommandRequest setRecurringAmount(BigDecimal value) { this.RecurringAmount = value; return this; } public Date getRecurringStartDate() { return RecurringStartDate; } public AddMembershipCommandRequest setRecurringStartDate(Date value) { this.RecurringStartDate = value; return this; } public Integer getPaymentMethodId() { return PaymentMethodId; } public AddMembershipCommandRequest setPaymentMethodId(Integer value) { this.PaymentMethodId = value; return this; } public Integer getBookingId() { return BookingId; } public AddMembershipCommandRequest setBookingId(Integer value) { this.BookingId = value; return this; } private static Object responseType = AddMembershipResult.class; public Object getResponseType() { return responseType; } } public static class AddMembershipResult implements ICommandResult { public Integer MembershipId = null; public Integer RecurrenceId = null; public Boolean HasRecurringPayments = null; public Integer getMembershipId() { return MembershipId; } public AddMembershipResult setMembershipId(Integer value) { this.MembershipId = value; return this; } public Integer getRecurrenceId() { return RecurrenceId; } public AddMembershipResult setRecurrenceId(Integer value) { this.RecurrenceId = value; return this; } public Boolean isHasRecurringPayments() { return HasRecurringPayments; } public AddMembershipResult setHasRecurringPayments(Boolean value) { this.HasRecurringPayments = value; return this; } } public static class CustomAttributeValue { public Integer CustomAttributeId = null; public Integer CustomAttributeValueId = null; public Integer InstanceId = null; public String StoredValue = null; public String TypeName = null; public Boolean ReadOnly = null; public Integer getCustomAttributeId() { return CustomAttributeId; } public CustomAttributeValue setCustomAttributeId(Integer value) { this.CustomAttributeId = value; return this; } public Integer getCustomAttributeValueId() { return CustomAttributeValueId; } public CustomAttributeValue setCustomAttributeValueId(Integer value) { this.CustomAttributeValueId = value; return this; } public Integer getInstanceId() { return InstanceId; } public CustomAttributeValue setInstanceId(Integer value) { this.InstanceId = value; return this; } public String getStoredValue() { return StoredValue; } public CustomAttributeValue setStoredValue(String value) { this.StoredValue = value; return this; } public String getTypeName() { return TypeName; } public CustomAttributeValue setTypeName(String value) { this.TypeName = value; return this; } public Boolean isReadOnly() { return ReadOnly; } public CustomAttributeValue setReadOnly(Boolean value) { this.ReadOnly = value; return this; } } public static enum PreviousMembershipAction { Nothing, Renewal, Replaces, Additional, Delete; } public static class MembershipType { public Integer BranchId = null; public Date StartDate = null; public Date EndDate = null; public Integer Length = null; public OffsetPeriod LengthPeriod = null; public ArrayList Payments = null; public BigDecimal AddToBalance = null; public Integer SessionsRemaining = null; public Integer ClassesRemaining = null; public Integer LicensesRemaining = null; public Boolean MultiSiteAccess = null; public Integer MemberLimit = null; public String Definition = null; public Boolean BookingAccessOnly = null; public Integer getBranchId() { return BranchId; } public MembershipType setBranchId(Integer value) { this.BranchId = value; return this; } public Date getStartDate() { return StartDate; } public MembershipType setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public MembershipType setEndDate(Date value) { this.EndDate = value; return this; } public Integer getLength() { return Length; } public MembershipType setLength(Integer value) { this.Length = value; return this; } public OffsetPeriod getLengthPeriod() { return LengthPeriod; } public MembershipType setLengthPeriod(OffsetPeriod value) { this.LengthPeriod = value; return this; } public ArrayList getPayments() { return Payments; } public MembershipType setPayments(ArrayList value) { this.Payments = value; return this; } public BigDecimal getAddToBalance() { return AddToBalance; } public MembershipType setAddToBalance(BigDecimal value) { this.AddToBalance = value; return this; } public Integer getSessionsRemaining() { return SessionsRemaining; } public MembershipType setSessionsRemaining(Integer value) { this.SessionsRemaining = value; return this; } public Integer getClassesRemaining() { return ClassesRemaining; } public MembershipType setClassesRemaining(Integer value) { this.ClassesRemaining = value; return this; } public Integer getLicensesRemaining() { return LicensesRemaining; } public MembershipType setLicensesRemaining(Integer value) { this.LicensesRemaining = value; return this; } public Boolean isMultiSiteAccess() { return MultiSiteAccess; } public MembershipType setMultiSiteAccess(Boolean value) { this.MultiSiteAccess = value; return this; } public Integer getMemberLimit() { return MemberLimit; } public MembershipType setMemberLimit(Integer value) { this.MemberLimit = value; return this; } public String getDefinition() { return Definition; } public MembershipType setDefinition(String value) { this.Definition = value; return this; } public Boolean isBookingAccessOnly() { return BookingAccessOnly; } public MembershipType setBookingAccessOnly(Boolean value) { this.BookingAccessOnly = value; return this; } } public static interface ICommandResult { } public static enum OffsetPeriod { Day, Week, Month, Year; } public static class MembershipPayment { public String Name = null; public PaymentType PaymentType = null; public BigDecimal Amount = null; public PaymentPeriod PaymentPeriod = null; public DirectDebitPeriod DirectDebitPeriod = null; public Integer Recurring = null; public Integer StartingOffset = null; public OffsetPeriod StartingOffsetPeriod = null; public Date StartDate = null; public PaymentMethod PaymentMethod = null; public Boolean AutoRecur = null; public Boolean ProRata = null; public BigDecimal ProRataAmount = null; public Date ProRataStartDate = null; public PaymentMethod ProRataPaymentMethod = null; public Boolean ProRataAddToFirstPayment = null; public Boolean ChargePerLicense = null; public String getName() { return Name; } public MembershipPayment setName(String value) { this.Name = value; return this; } public PaymentType getPaymentType() { return PaymentType; } public MembershipPayment setPaymentType(PaymentType value) { this.PaymentType = value; return this; } public BigDecimal getAmount() { return Amount; } public MembershipPayment setAmount(BigDecimal value) { this.Amount = value; return this; } public PaymentPeriod getPaymentPeriod() { return PaymentPeriod; } public MembershipPayment setPaymentPeriod(PaymentPeriod value) { this.PaymentPeriod = value; return this; } public DirectDebitPeriod getDirectDebitPeriod() { return DirectDebitPeriod; } public MembershipPayment setDirectDebitPeriod(DirectDebitPeriod value) { this.DirectDebitPeriod = value; return this; } public Integer getRecurring() { return Recurring; } public MembershipPayment setRecurring(Integer value) { this.Recurring = value; return this; } public Integer getStartingOffset() { return StartingOffset; } public MembershipPayment setStartingOffset(Integer value) { this.StartingOffset = value; return this; } public OffsetPeriod getStartingOffsetPeriod() { return StartingOffsetPeriod; } public MembershipPayment setStartingOffsetPeriod(OffsetPeriod value) { this.StartingOffsetPeriod = value; return this; } public Date getStartDate() { return StartDate; } public MembershipPayment setStartDate(Date value) { this.StartDate = value; return this; } public PaymentMethod getPaymentMethod() { return PaymentMethod; } public MembershipPayment setPaymentMethod(PaymentMethod value) { this.PaymentMethod = value; return this; } public Boolean isAutoRecur() { return AutoRecur; } public MembershipPayment setAutoRecur(Boolean value) { this.AutoRecur = value; return this; } public Boolean isProRata() { return ProRata; } public MembershipPayment setProRata(Boolean value) { this.ProRata = value; return this; } public BigDecimal getProRataAmount() { return ProRataAmount; } public MembershipPayment setProRataAmount(BigDecimal value) { this.ProRataAmount = value; return this; } public Date getProRataStartDate() { return ProRataStartDate; } public MembershipPayment setProRataStartDate(Date value) { this.ProRataStartDate = value; return this; } public PaymentMethod getProRataPaymentMethod() { return ProRataPaymentMethod; } public MembershipPayment setProRataPaymentMethod(PaymentMethod value) { this.ProRataPaymentMethod = value; return this; } public Boolean isProRataAddToFirstPayment() { return ProRataAddToFirstPayment; } public MembershipPayment setProRataAddToFirstPayment(Boolean value) { this.ProRataAddToFirstPayment = value; return this; } public Boolean isChargePerLicense() { return ChargePerLicense; } public MembershipPayment setChargePerLicense(Boolean value) { this.ChargePerLicense = value; return this; } } public static enum PaymentType { Deposit(1), MemberPayment(2), Recurring(3), Purchase(4); private final int value; PaymentType(final int intValue) { value = intValue; } public int getValue() { return value; } } public static enum PaymentPeriod { Single, Recurring; } public static enum DirectDebitPeriod { Daily(0), Monthly(1), Quarterly(2), Yearly(3), Weekly(4), SixMonthly(5), TwoWeekly(6), EveryFourWeeks(7), None(-1); private final int value; DirectDebitPeriod(final int intValue) { value = intValue; } public int getValue() { return value; } } public static enum PaymentMethod { Unpaid(1), Cash(2), Card(3), Cheque(4), Recurring(5), Failed(6), Bacs(7), Account(8); private final int value; PaymentMethod(final int intValue) { value = intValue; } public int getValue() { return value; } } }