LayoutItem

@Serializable
data class LayoutItem(val name: String, val kind: ProductInfo.LayoutItemKind, val classPath: List<String> = mutableListOf()) : Serializable

Represents a layout item in the product structure.

Constructors

Link copied to clipboard
constructor(name: String, kind: ProductInfo.LayoutItemKind, classPath: List<String> = mutableListOf())

Properties

Link copied to clipboard

The list of class paths associated with the layout item.

Link copied to clipboard

The kind of the layout item.

Link copied to clipboard

The name of the layout item.