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

import Foundation

public struct CheckLyricsCopyrightInfringementRequest: Codable, Equatable {
    public var lyrics: String
    public var threshold: Double?
    public var version: String?

    public init(lyrics: String, threshold: Double? = nil, version: String? = nil) {
        self.lyrics = lyrics
        self.threshold = threshold
        self.version = version
    }
}
