/* Options: Date: 2025-01-08 03:17:42 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazordiffusion.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UpdateSignup.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @ValidateRequest(Validator="HasRole(`Moderator`)") public static class UpdateSignup implements IReturn, IPatchDb { public Integer id = null; public SignupType type = null; @Validate(Validator="Email") public String email = null; public String name = null; public Date cancelledDate = null; public Integer getId() { return id; } public UpdateSignup setId(Integer value) { this.id = value; return this; } public SignupType getType() { return type; } public UpdateSignup setType(SignupType value) { this.type = value; return this; } public String getEmail() { return email; } public UpdateSignup setEmail(String value) { this.email = value; return this; } public String getName() { return name; } public UpdateSignup setName(String value) { this.name = value; return this; } public Date getCancelledDate() { return cancelledDate; } public UpdateSignup setCancelledDate(Date value) { this.cancelledDate = value; return this; } private static Object responseType = Signup.class; public Object getResponseType() { return responseType; } } public static class Signup extends StatBase { public Integer id = null; public SignupType type = null; public String email = null; public String name = null; public Date cancelledDate = null; public Integer getId() { return id; } public Signup setId(Integer value) { this.id = value; return this; } public SignupType getType() { return type; } public Signup setType(SignupType value) { this.type = value; return this; } public String getEmail() { return email; } public Signup setEmail(String value) { this.email = value; return this; } public String getName() { return name; } public Signup setName(String value) { this.name = value; return this; } public Date getCancelledDate() { return cancelledDate; } public Signup setCancelledDate(Date value) { this.cancelledDate = value; return this; } } public static enum SignupType { Updates, Beta; } public static class StatBase { public String refId = null; public Integer appUserId = null; public String rawUrl = null; public String remoteIp = null; public Date createdDate = null; public String getRefId() { return refId; } public StatBase setRefId(String value) { this.refId = value; return this; } public Integer getAppUserId() { return appUserId; } public StatBase setAppUserId(Integer value) { this.appUserId = value; return this; } public String getRawUrl() { return rawUrl; } public StatBase setRawUrl(String value) { this.rawUrl = value; return this; } public String getRemoteIp() { return remoteIp; } public StatBase setRemoteIp(String value) { this.remoteIp = value; return this; } public Date getCreatedDate() { return createdDate; } public StatBase setCreatedDate(Date value) { this.createdDate = value; return this; } } }