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

import Foundation

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

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

    public static let clip = Self(rawValue: "clip")
    public static let playlist = Self(rawValue: "playlist")
    public static let user = Self(rawValue: "user")
    public static let persona = Self(rawValue: "persona")
    public static let hook = Self(rawValue: "hook")
    public static let genre = Self(rawValue: "genre")
}
