/* Options: Date: 2025-08-04 03:33:15 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ForgotPassword.* //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="/user/forgot", Verbs="POST") public static class ForgotPassword implements IReturn, IPost { public String Email = null; public String getEmail() { return Email; } public ForgotPassword setEmail(String value) { this.Email = value; return this; } private static Object responseType = ForgotPasswordResponse.class; public Object getResponseType() { return responseType; } } public static class ForgotPasswordResponse extends ResponseBase { public Boolean IsEmailSent = null; public Boolean getIsEmailSent() { return IsEmailSent; } public ForgotPasswordResponse setIsEmailSent(Boolean value) { this.IsEmailSent = value; return this; } } public static class ResponseBase { public ResponseStatus ResponseStatus = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public ResponseBase setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }