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

import Foundation

public struct RemoveHookQualityLabelRequest: Codable, Equatable {
    public var label: String?

    public init(label: String? = nil) {
        self.label = label
    }
}
