com.imsweb.seerapi.client.publishable.PublishableChangelogResults 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
/*
* Copyright (C) 2011 Information Management Services, Inc.
*/
package com.imsweb.seerapi.client.publishable;
import com.fasterxml.jackson.annotation.JsonProperty;
public class PublishableChangelogResults {
protected Long _total;
protected Integer _count;
protected Integer _offset;
/**
* Default constructor
*/
public PublishableChangelogResults() {
}
@JsonProperty("total")
public Long getTotal() {
return _total;
}
public void setTotal(Long total) {
_total = total;
}
@JsonProperty("count")
public Integer getCount() {
return _count;
}
public void setCount(Integer count) {
_count = count;
}
@JsonProperty("offset")
public Integer getOffset() {
return _offset;
}
public void setOffset(Integer offset) {
_offset = offset;
}
}