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

import Foundation

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

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

    public static let banner = Self(rawValue: "banner")
    public static let featuredFeed = Self(rawValue: "featured_feed")
    public static let remixContestCarousel = Self(rawValue: "remix_contest_carousel")
    public static let hookCarousel = Self(rawValue: "hook_carousel")
}
