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

import Foundation

public struct HookReportType: RawRepresentable, Codable, Equatable {
    public let rawValue: String

    public init(rawValue: String) {
        self.rawValue = rawValue
    }

    public static let inappropriate = Self(rawValue: "inappropriate")
    public static let spam = Self(rawValue: "spam")
    public static let selfPromotion = Self(rawValue: "self_promotion")
    public static let intellectualProperty = Self(rawValue: "intellectual_property")
    public static let other = Self(rawValue: "other")
}
