ComparisonFileChild

data class ComparisonFileChild(@Json(name = "path") val path: String, @Json(name = "presence") val presence: ComparisonPresence, @Json(name = "status") val status: String? = null, @Json(name = "children") val children: List<ComparisonFileChild>? = null)

A child entry in a file input comparison tree.

Parameters

path

The child path relative to its parent.

presence
status

The comparison status of this child. Only present when presence is IN_BOTH.

children

Children of this child. Null if this child has no children.

Constructors

Link copied to clipboard
constructor(@Json(name = "path") path: String, @Json(name = "presence") presence: ComparisonPresence, @Json(name = "status") status: String? = null, @Json(name = "children") children: List<ComparisonFileChild>? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard