/* Options: Date: 2025-04-04 18:01:47 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.AddToTasterSessionCommandRequest.* //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/AddToTasterSessionCommand", Verbs="POST") public static class AddToTasterSessionCommandRequest implements IReturn { public Integer BookingId = null; public Boolean AgreedToTerms = null; public ArrayList Tags = null; public String Forenames = null; public String Surname = null; public String Email = null; public String Mobile = null; public String MedicalInformation = null; public String DateOfBirth = null; public String MemberName = null; public String ParentSurname = null; public Integer getBookingId() { return BookingId; } public AddToTasterSessionCommandRequest setBookingId(Integer value) { this.BookingId = value; return this; } public Boolean isAgreedToTerms() { return AgreedToTerms; } public AddToTasterSessionCommandRequest setAgreedToTerms(Boolean value) { this.AgreedToTerms = value; return this; } public ArrayList getTags() { return Tags; } public AddToTasterSessionCommandRequest setTags(ArrayList value) { this.Tags = value; return this; } public String getForenames() { return Forenames; } public AddToTasterSessionCommandRequest setForenames(String value) { this.Forenames = value; return this; } public String getSurname() { return Surname; } public AddToTasterSessionCommandRequest setSurname(String value) { this.Surname = value; return this; } public String getEmail() { return Email; } public AddToTasterSessionCommandRequest setEmail(String value) { this.Email = value; return this; } public String getMobile() { return Mobile; } public AddToTasterSessionCommandRequest setMobile(String value) { this.Mobile = value; return this; } public String getMedicalInformation() { return MedicalInformation; } public AddToTasterSessionCommandRequest setMedicalInformation(String value) { this.MedicalInformation = value; return this; } public String getDateOfBirth() { return DateOfBirth; } public AddToTasterSessionCommandRequest setDateOfBirth(String value) { this.DateOfBirth = value; return this; } public String getMemberName() { return MemberName; } public AddToTasterSessionCommandRequest setMemberName(String value) { this.MemberName = value; return this; } public String getParentSurname() { return ParentSurname; } public AddToTasterSessionCommandRequest setParentSurname(String value) { this.ParentSurname = value; return this; } private static Object responseType = AddToTasterSessionResult.class; public Object getResponseType() { return responseType; } } public static class AddToTasterSessionResult implements ICommandResult { public UUID MemberKey = null; public String AddToCalendarHtml = null; public UUID getMemberKey() { return MemberKey; } public AddToTasterSessionResult setMemberKey(UUID value) { this.MemberKey = value; return this; } public String getAddToCalendarHtml() { return AddToCalendarHtml; } public AddToTasterSessionResult setAddToCalendarHtml(String value) { this.AddToCalendarHtml = value; return this; } } public static interface ICommandResult { } }