defect commit
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
package hello;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
||||
|
||||
@JsonIgnoreProperties(ignoreUnknown = true)
|
||||
public class Quote {
|
||||
|
||||
private String type;
|
||||
private Value value;
|
||||
|
||||
public Quote() {
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Value getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public void setValue(Value value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Quote{" + "type='" + type + '\'' + ", value=" + value + '}';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user