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

com.imsweb.seerapi.client.glossary.GlossarySearchResults Maven / Gradle / Ivy

There is a newer version: 5.7
Show newest version
/*
 * Copyright (C) 2011 Information Management Services, Inc.
 */
package com.imsweb.seerapi.client.glossary;

import java.util.List;

import com.fasterxml.jackson.annotation.JsonProperty;

import com.imsweb.seerapi.client.publishable.PublishableSearchResults;

public class GlossarySearchResults extends PublishableSearchResults {

    @JsonProperty("results")
    protected List _results;

    public List getResults() {
        return _results;
    }

    public void setResults(List results) {
        _results = results;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy