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

import Foundation

public struct GetCommentsResponse: Codable, Equatable {
    public var allowComment: Bool
    public var disableReason: String?
    public var nextCursor: String?
    public var results: [CommentSchema]
    public var totalCount: Int?

    public init(allowComment: Bool? = nil, disableReason: String? = nil, nextCursor: String? = nil, results: [CommentSchema], totalCount: Int? = nil) {
        self.allowComment = allowComment ?? true
        self.disableReason = disableReason
        self.nextCursor = nextCursor
        self.results = results
        self.totalCount = totalCount
    }
}
