com.imsweb.seerapi.client.glossary.GlossaryChangelogResults Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of seerapi-client-java Show documentation
Show all versions of seerapi-client-java Show documentation
API mapping for SEER*API in Java
The 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.PublishableChangelogResults;
public class GlossaryChangelogResults extends PublishableChangelogResults {
protected List _changelogs;
@JsonProperty("changelogs")
public List getChangelogs() {
return _changelogs;
}
public void setChangelogs(List changelogs) {
_changelogs = changelogs;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy