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

com.imsweb.seerapi.client.shared.KeywordMatch Maven / Gradle / Ivy

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

import java.util.Set;

import com.fasterxml.jackson.annotation.JsonProperty;

public class KeywordMatch {

    @JsonProperty("id")
    private String _id;
    @JsonProperty("keyword")
    private String _keyword;
    @JsonProperty("category")
    private Set _category;

    public String getId() {
        return _id;
    }

    public void setId(String id) {
        _id = id;
    }

    public String getKeyword() {
        return _keyword;
    }

    public void setKeyword(String keyword) {
        _keyword = keyword;
    }

    public Set getCategory() {
        return _category;
    }

    public void setCategory(Set category) {
        _category = category;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy