DialogNodeVisitedDetails
public struct DialogNodeVisitedDetails : Codable, Equatable
DialogNodeVisitedDetails.
-
The unique ID of a dialog node that was triggered during processing of the input message.
Declaration
Swift
public var dialogNode: String?
-
The title of the dialog node.
Declaration
Swift
public var title: String?
-
The conditions that trigger the dialog node.
Declaration
Swift
public var conditions: String?
-
Initialize a
DialogNodeVisitedDetails
with member variables.Declaration
Swift
public init( dialogNode: String? = nil, title: String? = nil, conditions: String? = nil )
Parameters
dialogNode
The unique ID of a dialog node that was triggered during processing of the input message.
title
The title of the dialog node.
conditions
The conditions that trigger the dialog node.
Return Value
An initialized
DialogNodeVisitedDetails
.