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

import Foundation

public struct UpdateHookMetadataResponse: Codable, Equatable {
    public var hookId: String
    public var success: Bool

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