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

import Foundation

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

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

    public static let videoCover = Self(rawValue: "video_cover")
    public static let videoHook = Self(rawValue: "video_hook")
    public static let videoScenes = Self(rawValue: "video_scenes")
}
