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
DialogNodeVisitedDetailswith member variables.Declaration
Swift
public init( dialogNode: String? = nil, title: String? = nil, conditions: String? = nil )Parameters
dialogNodeThe unique ID of a dialog node that was triggered during processing of the input message.
titleThe title of the dialog node.
conditionsThe conditions that trigger the dialog node.
Return Value
An initialized
DialogNodeVisitedDetails.
View on GitHub
DialogNodeVisitedDetails Structure Reference