/* Options: Date: 2025-04-04 18:08:41 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: CustomAttributeService.ValidateAttributesRequest.* //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/CustomAttribute/ValidateAttributes", Verbs="POST,GET") public static class ValidateAttributesRequest implements IReturnVoid { public CustomAttributeTarget Target = null; public ArrayList CustomAttributeValues = null; public String GroupName = null; public Integer Id = null; public CustomAttributeTarget getTarget() { return Target; } public ValidateAttributesRequest setTarget(CustomAttributeTarget value) { this.Target = value; return this; } public ArrayList getCustomAttributeValues() { return CustomAttributeValues; } public ValidateAttributesRequest setCustomAttributeValues(ArrayList value) { this.CustomAttributeValues = value; return this; } public String getGroupName() { return GroupName; } public ValidateAttributesRequest setGroupName(String value) { this.GroupName = value; return this; } public Integer getId() { return Id; } public ValidateAttributesRequest setId(Integer value) { this.Id = value; return this; } } public static enum CustomAttributeTarget { Member, PaymentMethod, Membership, MembershipReview, PaymentGateway, PaymentGatewayType, User, Booking, Staff; } 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; } } }