MessageContextGlobalStateless
public struct MessageContextGlobalStateless : Codable, Equatable
Session context data that is shared by all skills used by the Assistant.
-
Built-in system properties that apply to all skills used by the assistant.
Declaration
Swift
public var system: MessageContextGlobalSystem? -
The unique identifier of the session.
Declaration
Swift
public var sessionID: String? -
Initialize a
MessageContextGlobalStatelesswith member variables.Declaration
Swift
public init( system: MessageContextGlobalSystem? = nil, sessionID: String? = nil )Parameters
systemBuilt-in system properties that apply to all skills used by the assistant.
sessionIDThe unique identifier of the session.
Return Value
An initialized
MessageContextGlobalStateless.
View on GitHub
MessageContextGlobalStateless Structure Reference