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

import Foundation

public struct HomepageSection: Codable, Equatable {
    public var feeds: [GenericFeedSchema]
    public var sectionName: String
    /// HomepageSectionType
    public var sectionType: HomepageSectionType

    public init(feeds: [GenericFeedSchema], sectionName: String, sectionType: HomepageSectionType) {
        self.feeds = feeds
        self.sectionName = sectionName
        self.sectionType = sectionType
    }
}
