ComparisonFileRootInfo

data class ComparisonFileRootInfo(@Json(name = "displayPath") val displayPath: String, @Json(name = "realPathA") val realPathA: String? = null, @Json(name = "realPathB") val realPathB: String? = null)

Information about a file root.

Parameters

displayPath

Human-friendly representation of the path.

realPathA

The real filesystem path in build A. Null when the root is not in build A or when the real path equals displayPath.

realPathB

The real filesystem path in build B. Null when the root is not in build B or when the real path equals displayPath.

Constructors

Link copied to clipboard
constructor(@Json(name = "displayPath") displayPath: String, @Json(name = "realPathA") realPathA: String? = null, @Json(name = "realPathB") realPathB: String? = null)

Properties

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