
com.cybozu.kintone.client.model.app.basic.response.GetViewsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kintone-sdk Show documentation
Show all versions of kintone-sdk Show documentation
kintone Java SDK for REST API
The newest version!
package com.cybozu.kintone.client.model.app.basic.response;
import java.util.HashMap;
import com.cybozu.kintone.client.model.app.view.ViewModel;
public class GetViewsResponse {
private Integer revision;
private HashMap views;
public Integer getRevision() {
return revision;
}
public void setRevision(Integer revision) {
this.revision = revision;
}
public HashMap getViews() {
return views;
}
public void setViews(HashMap views) {
this.views = views;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy