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

org.gitlab.api.models.GitlabNote Maven / Gradle / Ivy

There is a newer version: 4.1.1
Show newest version
package org.gitlab.api.models;

import java.util.Date;
import org.codehaus.jackson.annotate.JsonProperty;

public class GitlabNote {

    public static final String URL = "/notes";

    private Integer _id;
    private String _body;
    private String _attachment;
    private GitlabUser _author;

    @JsonProperty("created_at")
    private Date _createdAt;

    public Integer getId() {
        return _id;
    }

    public void setId(Integer id) {
        _id = id;
    }

    public String getBody() {
        return _body;
    }

    public void setBody(String body) {
        _body = body;
    }

    public GitlabUser getAuthor() {
        return _author;
    }

    public void setAuthor(GitlabUser author) {
        _author = author;
    }

    public Date getCreatedAt() {
        return _createdAt;
    }

    public void setCreatedAt(Date createdAt) {
        _createdAt = createdAt;
    }

    public String getAttachment() {
        return _attachment;
    }

    public void setAttachment(String attachment) {
        _attachment = attachment;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy