/* Options: Date: 2025-04-04 18:05:22 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.GetAttributesRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/api/CustomAttribute/GetAttributes", Verbs="POST,GET") public static class GetAttributesRequest implements IReturn> { public CustomAttributeTarget Target = null; public CustomAttributeModeFlags Flags = null; public Boolean IsMemberFacing = null; public String GroupName = null; public Integer Id = null; public CustomAttributeTarget getTarget() { return Target; } public GetAttributesRequest setTarget(CustomAttributeTarget value) { this.Target = value; return this; } public CustomAttributeModeFlags getFlags() { return Flags; } public GetAttributesRequest setFlags(CustomAttributeModeFlags value) { this.Flags = value; return this; } public Boolean getIsMemberFacing() { return IsMemberFacing; } public GetAttributesRequest setIsMemberFacing(Boolean value) { this.IsMemberFacing = value; return this; } public String getGroupName() { return GroupName; } public GetAttributesRequest setGroupName(String value) { this.GroupName = value; return this; } public Integer getId() { return Id; } public GetAttributesRequest setId(Integer value) { this.Id = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static enum CustomAttributeTarget { Member, PaymentMethod, Membership, MembershipReview, PaymentGateway, PaymentGatewayType, User, Booking, Staff; } @Flags() public static enum CustomAttributeModeFlags { @SerializedName("1") Insert(1), @SerializedName("2") Update(2), @SerializedName("3") All(3), @SerializedName("4") Public(4); private final int value; CustomAttributeModeFlags(final int intValue) { value = intValue; } public int getValue() { return value; } } }