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