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

import Foundation

public struct FeedSchema: Codable, Equatable {
    public var clips: [GeneratedClipSchema]
    public var currentPage: Int
    public var hasMore: Bool
    public var numTotalResults: Int

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