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

import Foundation

/// Unified response schema for trashed clips supporting both cursor-based and page-based pagination (for backwards compatibility):
public struct TrashedClipIdsSchema: Codable, Equatable {
    public var clips: [GeneratedClipSchema]
    public var nextCursor: String?
    public var numTotalResults: Int

    public init(clips: [GeneratedClipSchema], nextCursor: String? = nil, numTotalResults: Int) {
        self.clips = clips
        self.nextCursor = nextCursor
        self.numTotalResults = numTotalResults
    }
}
