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

com.synopsys.integration.jira.common.model.components.WorklogComponent 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.synopsys.integration.jira.common.model.EntityProperty;
import com.synopsys.integration.rest.component.IntRestComponent;

public class WorklogComponent extends IntRestComponent {
    private String self;
    private String id;
    private String issueId;
    private UserDetailsComponent author;
    private UserDetailsComponent updateAuthor;
    private String comment;
    private String created;
    private String updated;
    private VisibilityComponent visibility;
    private String started;
    private String timeSpent;
    private Integer timeSpentSeconds;
    private List properties;

    public WorklogComponent() {
    }

    public WorklogComponent(
        String self,
        String id,
        String issueId,
        UserDetailsComponent author,
        UserDetailsComponent updateAuthor,
        String comment,
        String created,
        String updated,
        VisibilityComponent visibility,
        String started,
        String timeSpent,
        Integer timeSpentSeconds,
        List properties
    ) {
        this.self = self;
        this.id = id;
        this.issueId = issueId;
        this.author = author;
        this.updateAuthor = updateAuthor;
        this.comment = comment;
        this.created = created;
        this.updated = updated;
        this.visibility = visibility;
        this.started = started;
        this.timeSpent = timeSpent;
        this.timeSpentSeconds = timeSpentSeconds;
        this.properties = properties;
    }

    public String getSelf() {
        return self;
    }

    public String getId() {
        return id;
    }

    public String getIssueId() {
        return issueId;
    }

    public UserDetailsComponent getAuthor() {
        return author;
    }

    public UserDetailsComponent getUpdateAuthor() {
        return updateAuthor;
    }

    public String getComment() {
        return comment;
    }

    public String getCreated() {
        return created;
    }

    public String getUpdated() {
        return updated;
    }

    public VisibilityComponent getVisibility() {
        return visibility;
    }

    public String getStarted() {
        return started;
    }

    public String getTimeSpent() {
        return timeSpent;
    }

    public Integer getTimeSpentSeconds() {
        return timeSpentSeconds;
    }

    public List getProperties() {
        return properties;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy