Variant
text-data
========================================================================= Streaming Data Types
Text data that can be provided as a string or stream
Streaming text is useful for large content that shouldn't be buffered entirely in memory.
variant text-data {
text(string),
text-stream(input-stream),
}Cases
| Case | Payload | Description |
|---|---|---|
| text | string | Inline text content |
| text-stream | input-stream | Streamed text content |