/* Options: Date: 2025-04-04 17:49:00 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.SimpleContactCommandRequest.* //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/SimpleContactCommand", Verbs="POST") public static class SimpleContactCommandRequest implements IReturn { public ArrayList Tags = null; public ArrayList CustomAttributes = null; public String Forenames = null; public String Surname = null; public String Email = null; public String Mobile = null; public String Message = null; public Date DateOfBirth = null; public String MemberName = null; public String ParentSurname = null; public ArrayList getTags() { return Tags; } public SimpleContactCommandRequest setTags(ArrayList value) { this.Tags = value; return this; } public ArrayList getCustomAttributes() { return CustomAttributes; } public SimpleContactCommandRequest setCustomAttributes(ArrayList value) { this.CustomAttributes = value; return this; } public String getForenames() { return Forenames; } public SimpleContactCommandRequest setForenames(String value) { this.Forenames = value; return this; } public String getSurname() { return Surname; } public SimpleContactCommandRequest setSurname(String value) { this.Surname = value; return this; } public String getEmail() { return Email; } public SimpleContactCommandRequest setEmail(String value) { this.Email = value; return this; } public String getMobile() { return Mobile; } public SimpleContactCommandRequest setMobile(String value) { this.Mobile = value; return this; } public String getMessage() { return Message; } public SimpleContactCommandRequest setMessage(String value) { this.Message = value; return this; } public Date getDateOfBirth() { return DateOfBirth; } public SimpleContactCommandRequest setDateOfBirth(Date value) { this.DateOfBirth = value; return this; } public String getMemberName() { return MemberName; } public SimpleContactCommandRequest setMemberName(String value) { this.MemberName = value; return this; } public String getParentSurname() { return ParentSurname; } public SimpleContactCommandRequest setParentSurname(String value) { this.ParentSurname = value; return this; } private static Object responseType = SimpleContactResult.class; public Object getResponseType() { return responseType; } } public static class SimpleContactResult implements ICommandResult { public UUID MemberKey = null; public UUID getMemberKey() { return MemberKey; } public SimpleContactResult setMemberKey(UUID value) { this.MemberKey = 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 interface ICommandResult { } }