DialogNodeOutput

public struct DialogNodeOutput : Codable, Equatable

The output of the dialog node. For more information about how to specify dialog node output, see the documentation.

  • An array of objects describing the output defined for the dialog node.

    Declaration

    Swift

    public var generic: [DialogNodeOutputGeneric]?
  • Output intended for specific integrations. For more information, see the documentation.

    Declaration

    Swift

    public var integrations: [String : [String : JSON]]?
  • Options that modify how specified output is handled.

    Declaration

    Swift

    public var modifiers: DialogNodeOutputModifiers?
  • Additional properties associated with this model.

    Declaration

    Swift

    public var additionalProperties: [String : JSON]
  • Initialize a DialogNodeOutput with member variables.

    Declaration

    Swift

    public init(
        generic: [DialogNodeOutputGeneric]? = nil,
        integrations: [String: [String: JSON]]? = nil,
        modifiers: DialogNodeOutputModifiers? = nil,
        additionalProperties: [String: JSON] = [:]
    )

    Parameters

    generic

    An array of objects describing the output defined for the dialog node.

    integrations

    Output intended for specific integrations. For more information, see the documentation.

    modifiers

    Options that modify how specified output is handled.

    Return Value

    An initialized DialogNodeOutput.

  • Declaration

    Swift

    public init(from decoder: Decoder) throws
  • Declaration

    Swift

    public func encode(to encoder: Encoder) throws