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

import Foundation

public struct ContestLandingPageResponse: Codable, Equatable {
    /// ContestSchema
    public var contest: ContestSchema
    /// GeneratedClipSchema
    public var contestClip: GeneratedClipSchema?
    public var contestHubEnabled: Bool?
    /// ContestInfoSchema
    public var contestInfo: ContestInfoSchema?

    public init(contest: ContestSchema, contestClip: GeneratedClipSchema? = nil, contestHubEnabled: Bool? = nil, contestInfo: ContestInfoSchema? = nil) {
        self.contest = contest
        self.contestClip = contestClip
        self.contestHubEnabled = contestHubEnabled
        self.contestInfo = contestInfo
    }
}
