18 lines
379 B
Swift
18 lines
379 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import Foundation
|
|
import Amplify
|
|
|
|
public extension PredictionsTranslateTextRequest {
|
|
/// Performs client side validation and returns a `PredictionsError` for any validation failures.
|
|
func validate() -> PredictionsError? {
|
|
|
|
return nil
|
|
}
|
|
}
|