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

com.imsweb.naaccr.api.client.entity.ItemChangelogResults Maven / Gradle / Ivy

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;

public class ItemChangelogResults {

    @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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy