27 lines
760 B
Swift
27 lines
760 B
Swift
import Foundation
|
|
|
|
public enum InteractiveImmediateMessages: String, CaseIterable {
|
|
case ping
|
|
case actionRowPressed = "ActionRowPressed"
|
|
case magicItemPressed
|
|
case pushAction = "PushAction"
|
|
case assistPipelinesFetch
|
|
case assistAudioData
|
|
case watchConfig
|
|
}
|
|
|
|
public enum InteractiveImmediateResponses: String, CaseIterable {
|
|
case pong
|
|
case actionRowPressedResponse = "ActionRowPressedResponse"
|
|
case magicItemRowPressedResponse
|
|
case pushActionResponse = "PushActionResponse"
|
|
case assistPipelinesFetchResponse
|
|
case assistAudioDataResponse
|
|
case assistSTTResponse
|
|
case assistIntentEndResponse
|
|
case assistTTSResponse
|
|
case assistError
|
|
case watchConfigResponse
|
|
case emptyWatchConfigResponse
|
|
}
|