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

import Foundation

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

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

    public static let hero = Self(rawValue: "hero")
    public static let remixCta = Self(rawValue: "remix_cta")
    public static let submissions = Self(rawValue: "submissions")
    public static let videoHighlight = Self(rawValue: "video_highlight")
    public static let faq = Self(rawValue: "faq")
}
