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

import Foundation

public struct InspectWatchHistoryResponse: Codable, Equatable {
    public var count: Int
    public var hookIds: [String]
    public var message: String?
    public var success: Bool

    public init(count: Int, hookIds: [String], message: String? = nil, success: Bool) {
        self.count = count
        self.hookIds = hookIds
        self.message = message
        self.success = success
    }
}
