HighlightedFileResponse

data class HighlightedFileResponse(val path: String, val sections: List<String>? = null, val visited: Boolean? = null)

The information of a highlighted file that user should pay attention to.

Constructors

Link copied to clipboard
constructor(path: String, sections: List<String>? = null, visited: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The path of the highlighted file.

Link copied to clipboard
val sections: List<String>? = null

The name of sections to highlight.

Link copied to clipboard
val visited: Boolean? = null

A flag to save whether this file is viewed by user.