DialogNodeOutputTextValuesElement

public struct DialogNodeOutputTextValuesElement : Codable, Equatable

DialogNodeOutputTextValuesElement.

  • The text of a response. This string can include newline characters (\n), Markdown tagging, or other special characters, if supported by the channel.

    Declaration

    Swift

    public var text: String?
  • Initialize a DialogNodeOutputTextValuesElement with member variables.

    Declaration

    Swift

    public init(
        text: String? = nil
    )

    Parameters

    text

    The text of a response. This string can include newline characters (\n), Markdown tagging, or other special characters, if supported by the channel.

    Return Value

    An initialized DialogNodeOutputTextValuesElement.