19 lines
392 B
Swift
19 lines
392 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol PredictionsInterpretOperation: AmplifyOperation<
|
|
PredictionsInterpretRequest,
|
|
InterpretResult,
|
|
PredictionsError
|
|
> { }
|
|
|
|
public extension HubPayload.EventName.Predictions {
|
|
static let interpret = "Predictions.interpret"
|
|
}
|