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

import Foundation

public struct ContestClipResponse: Codable, Equatable {
    public var clip: [AnyJSON]?
    public var clipId: String
    /// ContestClipType
    public var clipType: ContestClipType?
    public var contestId: String
    public var isSubmitted: Bool

    public init(clip: [AnyJSON]? = nil, clipId: String, clipType: ContestClipType? = nil, contestId: String, isSubmitted: Bool) {
        self.clip = clip
        self.clipId = clipId
        self.clipType = clipType
        self.contestId = contestId
        self.isSubmitted = isSubmitted
    }
}
