// // Copyright Amazon.com Inc. or its affiliates. // All Rights Reserved. // // SPDX-License-Identifier: Apache-2.0 // extension Predictions { public struct Voice { public let id: String public init(id: String) { self.id = id } } }