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

import Foundation

public struct VideoRenderSongSchema: Codable, Equatable {
    public var clipEndTime: Double?
    public var clipStartTime: Double?
    /// VideoRenderLyricSchema
    public var lyric: VideoRenderLyricSchema?
    public var songId: String
    public var volume: Int?

    public init(clipEndTime: Double? = nil, clipStartTime: Double? = nil, lyric: VideoRenderLyricSchema? = nil, songId: String, volume: Int? = nil) {
        self.clipEndTime = clipEndTime
        self.clipStartTime = clipStartTime
        self.lyric = lyric
        self.songId = songId
        self.volume = volume
    }
}
