GetProjectMilestonesResult

data class GetProjectMilestonesResult(val id: String, val iids: List<Int>? = null, val includeParentMilestones: Boolean? = null, val milestones: List<GetProjectMilestonesMilestone>, val project: String, val search: String? = null, val state: String? = null, val title: String? = null)

A collection of values returned by getProjectMilestones.

Constructors

Link copied to clipboard
constructor(id: String, iids: List<Int>? = null, includeParentMilestones: Boolean? = null, milestones: List<GetProjectMilestonesMilestone>, project: String, search: String? = null, state: String? = null, title: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val id: String

The provider-assigned unique ID for this managed resource.

Link copied to clipboard
val iids: List<Int>? = null

Return only the milestones having the given iid (Note: ignored if include_parent_milestones is set as true).

Link copied to clipboard

Include group milestones from parent group and its ancestors.

Link copied to clipboard

List of milestones from a project.

Link copied to clipboard

The ID or URL-encoded path of the project owned by the authenticated user.

Link copied to clipboard
val search: String? = null

Return only milestones with a title or description matching the provided string.

Link copied to clipboard
val state: String? = null

Return only active or closed milestones.

Link copied to clipboard
val title: String? = null

Return only the milestones having the given title.