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

import Foundation

public struct VideoRenderLyricSchema: Codable, Equatable {
    public var endTime: Double
    public var height: Int
    public var lyricFont: String
    public var lyricStyle: String
    public var startTime: Double
    public var text: String
    public var width: Int

    public init(endTime: Double, height: Int, lyricFont: String, lyricStyle: String, startTime: Double, text: String, width: Int) {
        self.endTime = endTime
        self.height = height
        self.lyricFont = lyricFont
        self.lyricStyle = lyricStyle
        self.startTime = startTime
        self.text = text
        self.width = width
    }
}
