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

com.imsweb.seerapi.client.rx.RxChangelog Maven / Gradle / Ivy

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

import java.util.Date;
import java.util.List;

import com.fasterxml.jackson.annotation.JsonProperty;

public class RxChangelog {

    @JsonProperty("adds")
    private List _adds;
    @JsonProperty("deletes")
    private List _deletes;
    @JsonProperty("mods")
    private List _mods;
    @JsonProperty("user")
    private String _user;
    @JsonProperty("date")
    private Date _date;
    @JsonProperty("version")
    private String _version;
    @JsonProperty("description")
    private String _description;

    public List getAdds() {
        return _adds;
    }

    public void setAdds(List adds) {
        _adds = adds;
    }

    public List getDeletes() {
        return _deletes;
    }

    public void setDeletes(List deletes) {
        _deletes = deletes;
    }

    public List getMods() {
        return _mods;
    }

    public void setMods(List mods) {
        _mods = mods;
    }

    public String getUser() {
        return _user;
    }

    public void setUser(String user) {
        _user = user;
    }

    public Date getDate() {
        return _date;
    }

    public void setDate(Date date) {
        _date = date;
    }

    public String getVersion() {
        return _version;
    }

    public void setVersion(String version) {
        _version = version;
    }

    public String getDescription() {
        return _description;
    }

    public void setDescription(String description) {
        _description = description;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy