
org.gitlab4j.api.models.RelatedEpic Maven / Gradle / Ivy
package org.gitlab4j.api.models;
import java.util.Date;
import org.gitlab4j.api.utils.JacksonJson;
public class RelatedEpic extends AbstractEpic {
private static final long serialVersionUID = 1L;
private Boolean startDateIsFixed;
private Boolean dueDateIsFixed;
private Date dueDateFromInheritedSource;
private Long relatedEpicLinkId;
private LinkType linkType;
private Date linkCreatedAt;
private Date linkUpdatedAt;
public Boolean getStartDateIsFixed() {
return startDateIsFixed;
}
public void setStartDateIsFixed(Boolean startDateIsFixed) {
this.startDateIsFixed = startDateIsFixed;
}
public Boolean getDueDateIsFixed() {
return dueDateIsFixed;
}
public void setDueDateIsFixed(Boolean dueDateIsFixed) {
this.dueDateIsFixed = dueDateIsFixed;
}
public Date getDueDateFromInheritedSource() {
return dueDateFromInheritedSource;
}
public void setDueDateFromInheritedSource(Date dueDateFromInheritedSource) {
this.dueDateFromInheritedSource = dueDateFromInheritedSource;
}
public Long getRelatedEpicLinkId() {
return relatedEpicLinkId;
}
public void setRelatedEpicLinkId(Long relatedEpicLinkId) {
this.relatedEpicLinkId = relatedEpicLinkId;
}
public LinkType getLinkType() {
return linkType;
}
public void setLinkType(LinkType linkType) {
this.linkType = linkType;
}
public Date getLinkCreatedAt() {
return linkCreatedAt;
}
public void setLinkCreatedAt(Date linkCreatedAt) {
this.linkCreatedAt = linkCreatedAt;
}
public Date getLinkUpdatedAt() {
return linkUpdatedAt;
}
public void setLinkUpdatedAt(Date linkUpdatedAt) {
this.linkUpdatedAt = linkUpdatedAt;
}
public String toString() {
return (JacksonJson.toJsonString(this));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy