EditTagState

data class EditTagState(val prompt: String = "", val negativePrompt: String = "", val originalTag: String = "", val currentTag: String = "", val extraType: ExtraType? = null, val isNegative: Boolean = false) : MviState(source)

Carries EditTagState data through the SDAI presentation layer.

Author

Dmitriy Moroz

Constructors

Link copied to clipboard
constructor(prompt: String = "", negativePrompt: String = "", originalTag: String = "", currentTag: String = "", extraType: ExtraType? = null, isNegative: Boolean = false)

Properties

Link copied to clipboard

Exposes the currentTag value used by the SDAI presentation layer.

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

Exposes the extraType value used by the SDAI presentation layer.

Link copied to clipboard

Exposes the isNegative value used by the SDAI presentation layer.

Link copied to clipboard

Exposes the negativePrompt value used by the SDAI presentation layer.

Link copied to clipboard

Exposes the originalTag value used by the SDAI presentation layer.

Link copied to clipboard

Exposes the prompt value used by the SDAI presentation layer.