HighlightedFileArgs

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

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

Constructors

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

Properties

Link copied to clipboard
val path: Output<String>

The path of the highlighted file.

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

The name of sections to highlight.

Link copied to clipboard
val visited: Output<Boolean>? = null

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

Functions

Link copied to clipboard
open override fun toJava(): HighlightedFileArgs