/* Options: Date: 2024-12-23 11:43:49 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //Package: //GlobalNamespace: ConsumerApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ProfileChangePasswordRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class ConsumerApi { @Route(Path="/profile/change-password", Verbs="PUT") public static class ProfileChangePasswordRequest implements IReturn, IPut { public String password = null; public String passwordConfirmation = null; public String getPassword() { return password; } public ProfileChangePasswordRequest setPassword(String value) { this.password = value; return this; } public String getPasswordConfirmation() { return passwordConfirmation; } public ProfileChangePasswordRequest setPasswordConfirmation(String value) { this.passwordConfirmation = value; return this; } private static Object responseType = ProfileChangePasswordResponse.class; public Object getResponseType() { return responseType; } } public static class ProfileChangePasswordResponse { public Integer passwordScore = null; public Integer getPasswordScore() { return passwordScore; } public ProfileChangePasswordResponse setPasswordScore(Integer value) { this.passwordScore = value; return this; } } }