/* Options: Date: 2024-12-15 19:55:54 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://staging-api.billiecart.com.au //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AcceptGuestInvitationRequest.* //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="/users/invite/accept", Verbs="POST") public static class AcceptGuestInvitationRequest extends PostOperationUnTenanted implements IReturn { public String token = null; public String password = null; public String firstName = null; public String lastName = null; public String timezone = null; public String getToken() { return token; } public AcceptGuestInvitationRequest setToken(String value) { this.token = value; return this; } public String getPassword() { return password; } public AcceptGuestInvitationRequest setPassword(String value) { this.password = value; return this; } public String getFirstName() { return firstName; } public AcceptGuestInvitationRequest setFirstName(String value) { this.firstName = value; return this; } public String getLastName() { return lastName; } public AcceptGuestInvitationRequest setLastName(String value) { this.lastName = value; return this; } public String getTimezone() { return timezone; } public AcceptGuestInvitationRequest setTimezone(String value) { this.timezone = value; return this; } private static Object responseType = AcceptGuestInvitationResponse.class; public Object getResponseType() { return responseType; } } public static class AcceptGuestInvitationResponse { public ResponseStatus responseStatus = null; public ResponseStatus getResponseStatus() { return responseStatus; } public AcceptGuestInvitationResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } public static class PostOperationUnTenanted implements IPost { } }