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

import Foundation

public struct ClipRemixPermissionDefaults: Codable, Equatable {
    /// Default timestamp (in seconds) from which to start extending the clip
    public var extendFrom: Double?

    public init(extendFrom: Double? = nil) {
        self.extendFrom = extendFrom
    }
}
