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

com.synopsys.integration.jira.common.model.components.IssueFieldsComponent Maven / Gradle / Ivy

There is a newer version: 4.1.1
Show newest version
/*
 * int-jira-common
 *
 * Copyright (c) 2024 Synopsys, Inc.
 *
 * Use subject to the terms and conditions of the Synopsys End User Software License and Maintenance Agreement. All rights reserved worldwide.
 */
package com.synopsys.integration.jira.common.model.components;

import java.util.List;

import com.google.gson.JsonElement;
import com.google.gson.annotations.SerializedName;
import com.synopsys.integration.rest.component.IntRestComponent;

public class IssueFieldsComponent extends IntRestComponent {
    private List attachment;
    private UserDetailsComponent assignee;
    private PageOfIssueCommentsComponent comment;
    private String summary;
    private String description;
    private List issuelinks;
    private ProjectComponent project;
    @SerializedName(value = "subtasks", alternate = "sub-tasks")
    private List subTasks;
    private JsonElement timetracking; // TODO
    private String updated;
    private WatcherComponent watcher;
    private PageOfWorklogsComponent worklog;

    public IssueFieldsComponent() {
    }

    public IssueFieldsComponent(
        List attachment,
        UserDetailsComponent assignee,
        PageOfIssueCommentsComponent comment,
        String summary,
        String description,
        List issuelinks,
        ProjectComponent project,
        List subTasks,
        JsonElement timetracking,
        String updated,
        WatcherComponent watcher,
        PageOfWorklogsComponent worklog
    ) {
        this.attachment = attachment;
        this.assignee = assignee;
        this.comment = comment;
        this.summary = summary;
        this.description = description;
        this.issuelinks = issuelinks;
        this.project = project;
        this.subTasks = subTasks;
        this.timetracking = timetracking;
        this.updated = updated;
        this.watcher = watcher;
        this.worklog = worklog;
    }

    public List getAttachment() {
        return attachment;
    }

    public UserDetailsComponent getAssignee() {
        return assignee;
    }

    public PageOfIssueCommentsComponent getComment() {
        return comment;
    }

    public String getSummary() {
        return summary;
    }

    public String getDescription() {
        return description;
    }

    public List getIssuelinks() {
        return issuelinks;
    }

    public ProjectComponent getProject() {
        return project;
    }

    public List getSubTasks() {
        return subTasks;
    }

    public JsonElement getTimetracking() {
        return timetracking;
    }

    public String getUpdated() {
        return updated;
    }

    public WatcherComponent getWatcher() {
        return watcher;
    }

    public PageOfWorklogsComponent getWorklog() {
        return worklog;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy