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

import Foundation

/// Response schema for getting the master clip of a contest.
public struct MasterClipResponse: Codable, Equatable {
    public var clipId: String?

    public init(clipId: String? = nil) {
        self.clipId = clipId
    }
}
