Constructors

Link copied to clipboard
constructor(representations: List<TextContentBlock.Representation>)
constructor(body: String, mimeType: String? = null)
constructor(vararg representation: TextContentBlock.Representation)

Types

Link copied to clipboard
@Serializable
data class Representation(val body: String, val mimeType: String? = null)
Link copied to clipboard

Properties

Link copied to clipboard
val html: String?
Link copied to clipboard
Link copied to clipboard
open override val size: Int
Link copied to clipboard

Functions

Link copied to clipboard
open operator override fun contains(element: TextContentBlock.Representation): Boolean
Link copied to clipboard
Link copied to clipboard
operator fun get(mimeType: String): String?
open operator override fun get(index: Int): TextContentBlock.Representation
Link copied to clipboard
open override fun indexOf(element: TextContentBlock.Representation): Int
Link copied to clipboard
open override fun isEmpty(): Boolean
Link copied to clipboard
open operator override fun iterator(): Iterator<TextContentBlock.Representation>
Link copied to clipboard
open override fun lastIndexOf(element: TextContentBlock.Representation): Int
Link copied to clipboard
open override fun subList(fromIndex: Int, toIndex: Int): List<TextContentBlock.Representation>