GetProjectMilestonesPlainArgs

data class GetProjectMilestonesPlainArgs(val iids: List<Int>? = null, val includeParentMilestones: Boolean? = null, val project: String, val search: String? = null, val state: String? = null, val title: String? = null) : ConvertibleToJava<GetProjectMilestonesPlainArgs>

A collection of arguments for invoking getProjectMilestones.

Constructors

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

Properties

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

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.

Functions

Link copied to clipboard
open override fun toJava(): GetProjectMilestonesPlainArgs