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

import Foundation

public struct CollabPlaylistClipSchema: Codable, Equatable {
    /// GeneratedClipSchema
    public var clip: GeneratedClipSchema
    public var relativeIndex: Double

    public init(clip: GeneratedClipSchema, relativeIndex: Double) {
        self.clip = clip
        self.relativeIndex = relativeIndex
    }
}
