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

import Foundation

public struct FeedV3ResponseSchema: Codable, Equatable {
    public var clips: [GeneratedClipSchema]
    public var hasMore: Bool
    public var nextCursor: String?

    public init(clips: [GeneratedClipSchema], hasMore: Bool? = nil, nextCursor: String? = nil) {
        self.clips = clips
        self.hasMore = hasMore ?? false
        self.nextCursor = nextCursor
    }
}
