org.gitlab4j.api.webhook.EventChanges Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gitlab4j-api Show documentation
Show all versions of gitlab4j-api Show documentation
GitLab4J-API (gitlab4j-api) provides a full featured Java client library for working with GitLab repositories and servers via the GitLab REST API.
package org.gitlab4j.api.webhook;
import java.util.Date;
import java.util.List;
import org.gitlab4j.api.models.Assignee;
import org.gitlab4j.api.utils.JacksonJson;
public class EventChanges {
private ChangeContainer updatedAt;
private ChangeContainer updatedById;
private ChangeContainer dueDate;
private ChangeContainer milestoneId;
private ChangeContainer> labels;
private ChangeContainer> assignees;
private ChangeContainer totalTimeSpent;
private ChangeContainer confidential;
public ChangeContainer getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(ChangeContainer updatedAt) {
this.updatedAt = updatedAt;
}
public ChangeContainer getUpdatedById() {
return updatedById;
}
public void setUpdatedById(ChangeContainer updatedById) {
this.updatedById = updatedById;
}
public ChangeContainer getDueDate() {
return dueDate;
}
public void setDueDate(ChangeContainer dueDate) {
this.dueDate = dueDate;
}
public ChangeContainer getMilestoneId() {
return milestoneId;
}
public void setMilestoneId(ChangeContainer milestoneId) {
this.milestoneId = milestoneId;
}
public ChangeContainer> getLabels() {
return labels;
}
public void setLabels(ChangeContainer> labels) {
this.labels = labels;
}
public ChangeContainer> getAssignees() {
return assignees;
}
public void setAssignees(ChangeContainer> assignees) {
this.assignees = assignees;
}
public ChangeContainer getTotalTimeSpent() {
return totalTimeSpent;
}
public void setTotalTimeSpent(ChangeContainer totalTimeSpent) {
this.totalTimeSpent = totalTimeSpent;
}
public ChangeContainer getConfidential() {
return confidential;
}
public void setConfidential(ChangeContainer confidential) {
this.confidential = confidential;
}
@Override
public String toString() {
return (JacksonJson.toJsonString(this));
}
}