// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation

public struct FinishPersonalizedPromptsRequest: Codable, Equatable {
    public var locale: String
    public var prompts: [String]
    public var tags: [String]

    public init(locale: String, prompts: [String], tags: [String]) {
        self.locale = locale
        self.prompts = prompts
        self.tags = tags
    }
}
