@Serializable
data class ProjectQuery(var issues: List<IssueBean>, val startAt: Int, val total: Int, val names: JsonObject? = null, val schema: JsonObject? = null)

Kotlin representation of the ProjectQuery JSON

Parameters

issues

The issues of the project

startAt

The start index of the query

total

The total number of issues

names

The names of the project

schema

The schema of the project

Constructors

Link copied to clipboard
constructor(issues: List<IssueBean>, startAt: Int, total: Int, names: JsonObject? = null, schema: JsonObject? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val names: JsonObject?
Link copied to clipboard
val schema: JsonObject?
Link copied to clipboard
Link copied to clipboard
val total: Int

Functions

Link copied to clipboard
fun issues(imsProject: IMSProject): List<IssueData>