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

com.mx.path.model.mdx.model.payout.ChallengeAnswer Maven / Gradle / Ivy

There is a newer version: 16.0.0
Show newest version
package com.mx.path.model.mdx.model.payout;

import com.mx.path.model.mdx.model.MdxBase;

public final class ChallengeAnswer extends MdxBase {

  private String answer;
  private String id;

  public ChallengeAnswer() {
  }

  public String getAnswer() {
    return answer;
  }

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

  public String getId() {
    return id;
  }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy