ComparisonFileRoot

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

A root directory in a file input comparison.

Parameters

root
presence
status

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

children

Child entries of this root. Null if the root has no children.

Constructors

Link copied to clipboard
constructor(@Json(name = "root") root: ComparisonFileRootInfo, @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