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

import Foundation

public struct DeleteHookResponse: Codable, Equatable, Identifiable {
    public var id: String
    public var success: Bool

    public init(id: String, success: Bool) {
        self.id = id
        self.success = success
    }
}
