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

import Foundation

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

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

    public static let userUpload = Self(rawValue: "user_upload")
    public static let backfillVideoCover = Self(rawValue: "backfill_video_cover")
    public static let videoCover = Self(rawValue: "video_cover")
}
