com.mx.path.model.mdx.model.id.ResetPassword Maven / Gradle / Ivy
package com.mx.path.model.mdx.model.id;
import java.util.List;
import com.mx.path.model.mdx.model.MdxBase;
import com.mx.path.model.mdx.model.challenges.Challenge;
public class ResetPassword extends MdxBase {
//PUT /reset_password/challenges/:challenge_id will expect a single challenge
private Challenge challenge;
//POST /reset_password will return challenges
private List challenges;
public ResetPassword() {
}
public final Challenge getChallenge() {
return challenge;
}
public final void setChallenge(Challenge newChallenge) {
this.challenge = newChallenge;
}
public final List getChallenges() {
return challenges;
}
public final void setChallenges(List newChallenges) {
this.challenges = newChallenges;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy