/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Record for a Team that can be used to submit to a challenge, including whether said Team is already registered. * @export * @interface SubmissionTeam */ export interface SubmissionTeam { /** * Team ID * @type {string} * @memberof SubmissionTeam */ teamId?: string; /** * Challenge ID * @type {string} * @memberof SubmissionTeam */ challengeId?: string; /** * true if and only if the given team is registered for the given challenge. * @type {boolean} * @memberof SubmissionTeam */ isRegistered?: boolean; } /** * Check if a given object implements the SubmissionTeam interface. */ export declare function instanceOfSubmissionTeam(value: object): value is SubmissionTeam; export declare function SubmissionTeamFromJSON(json: any): SubmissionTeam; export declare function SubmissionTeamFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubmissionTeam; export declare function SubmissionTeamToJSON(json: any): SubmissionTeam; export declare function SubmissionTeamToJSONTyped(value?: SubmissionTeam | null, ignoreDiscriminator?: boolean): any;