GradleProject

data class GradleProject(@Json(name = "name") val name: String, @Json(name = "path") val path: String, @Json(name = "parent") val parent: Int? = null)

A Gradle project.

Parameters

name

The name of the project.

path

The path of the project.

parent

The index of the parent of this Gradle project in the GradleProjects array. null if this project has no parent (i.e. root project of a build).

Constructors

Link copied to clipboard
constructor(@Json(name = "name") name: String, @Json(name = "path") path: String, @Json(name = "parent") parent: Int? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val parent: Int? = null
Link copied to clipboard