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

import Foundation

public struct PaginatedThreadsResponse: Codable, Equatable {
    public var hasMore: Bool
    public var threads: [ThreadSummarySchema]

    public init(hasMore: Bool, threads: [ThreadSummarySchema]) {
        self.hasMore = hasMore
        self.threads = threads
    }
}
