GetProjectIssuesIssue

data class GetProjectIssuesIssue(val assigneeIds: List<Int>, val authorId: Int, val closedAt: String, val closedByUserId: Int, val confidential: Boolean, val createdAt: String, val description: String, val discussionLocked: Boolean, val discussionToResolve: String, val downvotes: Int, val dueDate: String, val epicId: Int, val epicIssueId: Int, val externalId: String, val humanTimeEstimate: String, val humanTotalTimeSpent: String, val iid: Int, val issueId: Int, val issueLinkId: Int, val issueType: String, val labels: List<String>, val links: Map<String, String>, val mergeRequestToResolveDiscussionsOf: Int, val mergeRequestsCount: Int, val milestoneId: Int, val movedToId: Int, val project: String, val references: Map<String, String>, val state: String, val subscribed: Boolean, val taskCompletionStatuses: List<GetProjectIssuesIssueTaskCompletionStatus>, val timeEstimate: Int, val title: String, val totalTimeSpent: Int, val updatedAt: String, val upvotes: Int, val userNotesCount: Int, val webUrl: String, val weight: Int)

Constructors

Link copied to clipboard
constructor(assigneeIds: List<Int>, authorId: Int, closedAt: String, closedByUserId: Int, confidential: Boolean, createdAt: String, description: String, discussionLocked: Boolean, discussionToResolve: String, downvotes: Int, dueDate: String, epicId: Int, epicIssueId: Int, externalId: String, humanTimeEstimate: String, humanTotalTimeSpent: String, iid: Int, issueId: Int, issueLinkId: Int, issueType: String, labels: List<String>, links: Map<String, String>, mergeRequestToResolveDiscussionsOf: Int, mergeRequestsCount: Int, milestoneId: Int, movedToId: Int, project: String, references: Map<String, String>, state: String, subscribed: Boolean, taskCompletionStatuses: List<GetProjectIssuesIssueTaskCompletionStatus>, timeEstimate: Int, title: String, totalTimeSpent: Int, updatedAt: String, upvotes: Int, userNotesCount: Int, webUrl: String, weight: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The IDs of the users to assign the issue to.

Link copied to clipboard

The ID of the author of the issue. Use gitlab.User data source to get more information about the user.

Link copied to clipboard

When the issue was closed. Date time string, ISO 8601 formatted, for example 2016-03-11T03:45:40Z.

Link copied to clipboard

The ID of the user that closed the issue. Use gitlab.User data source to get more information about the user.

Link copied to clipboard

Set an issue to be confidential.

Link copied to clipboard

When the issue was created. Date time string, ISO 8601 formatted, for example 2016-03-11T03:45:40Z. Requires administrator or project/group owner rights.

Link copied to clipboard

The description of an issue. Limited to 1,048,576 characters.

Link copied to clipboard

Whether the issue is locked for discussions or not.

Link copied to clipboard

The ID of a discussion to resolve. This fills out the issue with a default description and mark the discussion as resolved. Use in combination with merge_request_to_resolve_discussions_of.

Link copied to clipboard

The number of downvotes the issue has received.

Link copied to clipboard

The due date. Date time string in the format YYYY-MM-DD, for example 2016-03-11.

Link copied to clipboard
val epicId: Int

ID of the epic to add the issue to. Valid values are greater than or equal to 0.

Link copied to clipboard

The ID of the epic issue.

Link copied to clipboard

The external ID of the issue.

Link copied to clipboard

The human-readable time estimate of the issue.

Link copied to clipboard

The human-readable total time spent of the issue.

Link copied to clipboard
val iid: Int

The internal ID of the project's issue.

Link copied to clipboard

The instance-wide ID of the issue.

Link copied to clipboard

The ID of the issue link.

Link copied to clipboard

The type of issue. Valid values are: issue, incident, test_case.

Link copied to clipboard

The labels of an issue.

Link copied to clipboard

The links of the issue.

Link copied to clipboard

The number of merge requests associated with the issue.

Link copied to clipboard

The IID of a merge request in which to resolve all issues. This fills out the issue with a default description and mark all discussions as resolved. When passing a description or title, these values take precedence over the default values.

Link copied to clipboard

The global ID of a milestone to assign issue. To find the milestone_id associated with a milestone, view an issue with the milestone assigned and use the API to retrieve the issue's details.

Link copied to clipboard

The ID of the issue that was moved to.

Link copied to clipboard

The name or ID of the project.

Link copied to clipboard

The references of the issue.

Link copied to clipboard

The state of the issue. Valid values are: opened, closed.

Link copied to clipboard

Whether the authenticated user is subscribed to the issue or not.

Link copied to clipboard

The task completion status. It's always a one element list.

Link copied to clipboard

The time estimate of the issue.

Link copied to clipboard

The title of the issue.

Link copied to clipboard

The total time spent of the issue.

Link copied to clipboard

When the issue was updated. Date time string, ISO 8601 formatted, for example 2016-03-11T03:45:40Z.

Link copied to clipboard

The number of upvotes the issue has received.

Link copied to clipboard

The number of user notes on the issue.

Link copied to clipboard

The web URL of the issue.

Link copied to clipboard
val weight: Int

The weight of the issue. Valid values are greater than or equal to 0.