All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mx.path.model.mdx.model.id.MfaChallenge 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.authorization.Authorization;

public final class MfaChallenge extends MdxBase {

  private String answer;
  private String errorMessage;
  private String id;
  private List options;
  private String question;
  private List questions;
  private String type;
  private Authorization authorization;

  public MfaChallenge() {
  }

  public String getAnswer() {
    return answer;
  }

  public void setAnswer(String newAnswer) {
    this.answer = newAnswer;
  }

  public String getErrorMessage() {
    return errorMessage;
  }

  public void setErrorMessage(String newErrorMessage) {
    this.errorMessage = newErrorMessage;
  }

  public String getId() {
    return id;
  }

  public void setId(String newId) {
    this.id = newId;
  }

  public List getOptions() {
    return options;
  }

  public void setOptions(List options) {
    this.options = options;
  }

  public String getQuestion() {
    return question;
  }

  public void setQuestion(String newQuestion) {
    this.question = newQuestion;
  }

  public List getQuestions() {
    return questions;
  }

  public void setQuestions(List questions) {
    this.questions = questions;
  }

  public String getType() {
    return type;
  }

  public void setType(String newType) {
    this.type = newType;
  }

  public Authorization getAuthorization() {
    return authorization;
  }

  public void setAuthorization(Authorization authorization) {
    this.authorization = authorization;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy