com.imsweb.naaccr.api.client.entity.ItemHistory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of naaccr-api-client Show documentation
Show all versions of naaccr-api-client Show documentation
Wraps calls to the NAACCR API.
The newest version!
/*
* Copyright (C) 2023 Information Management Services, Inc.
*/
package com.imsweb.naaccr.api.client.entity;
import com.fasterxml.jackson.annotation.JsonProperty;
@SuppressWarnings("unused")
public class ItemHistory {
@JsonProperty("NaaccrVersion")
private String _naaccrVersion;
@JsonProperty("Value")
private String _value;
public String getNaaccrVersion() {
return _naaccrVersion;
}
public void setNaaccrVersion(String naaccrVersion) {
_naaccrVersion = naaccrVersion;
}
public String getValue() {
return _value;
}
public void setValue(String value) {
_value = value;
}
}