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

com.cybozu.kintone.client.model.comment.GetCommentsResponse Maven / Gradle / Ivy

/**
 * MIT License
 *
 * Copyright (c) 2018 Cybozu
 * https://github.com/kintone/kintone-java-sdk/blob/master/LICENSE
 */

package com.cybozu.kintone.client.model.comment;

import java.util.ArrayList;

public class GetCommentsResponse {

    private ArrayList comments;
    private Boolean older;
    private Boolean newer;

    /**
     * Get comment
     * @return comments
     */

    public ArrayList getComments() {
        return this.comments;
    }

    /**
     * Set comment
     * @param comments the comments to set
     */
    public void setComments(ArrayList comments) {
        this.comments = comments;
    }

    /**
     * Get Older comment
     * @return older
     */
    public Boolean getOlder() {
        return this.older;
    }

    /**
     * Set Older comment
     * @param older the older to set
     */
    public void setOlder(Boolean older) {
        this.older = older;
    }

    /**
     * Get Newer comment
     * @return newer
     */
    public Boolean getNewer() {
        return this.newer;
    }

    /**
     * Set Newer comment
     * @param newer the newer to set
     */
    public void setNewer(Boolean newer) {
        this.newer = newer;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy