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

import Foundation

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

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

    public static let copyrightInfringement = Self(rawValue: "copyright_infringement")
    public static let hateViolence = Self(rawValue: "hate_violence")
    public static let sexualContent = Self(rawValue: "sexual_content")
    public static let other = Self(rawValue: "other")
}
