com.imsweb.naaccr.api.client.entity.ItemHistoryResults 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 java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
@SuppressWarnings("unused")
public class ItemHistoryResults {
@JsonProperty("count")
private Integer _count;
@JsonProperty("results")
private List _results;
public Integer getCount() {
return _count;
}
public void setCount(Integer count) {
_count = count;
}
public List getResults() {
return _results;
}
public void setResults(List results) {
_results = results;
}
}