com.imsweb.seerapi.client.mph.MphRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of seerapi-client-java Show documentation
Show all versions of seerapi-client-java Show documentation
API mapping for SEER*API in Java
/*
* Copyright (C) 2013 Information Management Services, Inc.
*/
package com.imsweb.seerapi.client.mph;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
public class MphRule {
@JsonProperty("group_id")
private String _groupId;
@JsonProperty("step")
private String _step;
@JsonProperty("question")
private String _question;
@JsonProperty("reason")
private String _reason;
@JsonProperty("notes")
private List _notes;
@JsonProperty("examples")
private List _examples;
public MphRule() {
}
public String getGroupId() {
return _groupId;
}
public void setGroupId(String groupId) {
_groupId = groupId;
}
public String getStep() {
return _step;
}
public void setStep(String step) {
_step = step;
}
public String getQuestion() {
return _question;
}
public void setQuestion(String question) {
_question = question;
}
public String getReason() {
return _reason;
}
public void setReason(String reason) {
_reason = reason;
}
public List getNotes() {
return _notes;
}
public void setNotes(List notes) {
_notes = notes;
}
public List getExamples() {
return _examples;
}
public void setExamples(List examples) {
_examples = examples;
}
}