ProactiveActionDetails
public struct ProactiveActionDetails
Represents all info about details of a proactive action.
-
The unique id of the action.
Declaration
Swift
public let id: UUID
-
The name of the action.
Declaration
Swift
public let name: String
-
The type of proactive action.
Declaration
Swift
public let type: ActionType
-
Proactive action data message content.
Declaration
Swift
public let content: ProactiveActionDataMessageContent?
-
Declaration
Swift
public init(id: UUID, name: String, type: ActionType, content: ProactiveActionDataMessageContent?)
Parameters
id
The unique id of the action.
name
The name of the action.
type
The type of proactive action.
data
The data of the action.