/** * 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. */ /** * Relationship between a Challenge and registered Team * @export * @interface ChallengeTeam */ export interface ChallengeTeam { /** * The ID of this ChallengeTeam object * @type {string} * @memberof ChallengeTeam */ id?: string; /** * Synapse employs an Optimistic Concurrency Control (OCC) scheme to handle concurrent updates. Since the E-Tag changes every time an entity is updated it is used to detect when a client's current representation of an entity is out-of-date. * @type {string} * @memberof ChallengeTeam */ etag?: string; /** * The ID of the Challenge * @type {string} * @memberof ChallengeTeam */ challengeId?: string; /** * The ID of the Team * @type {string} * @memberof ChallengeTeam */ teamId?: string; /** * A descriptive message for the Team in the context of the Challenge. Limited to 500 characters. * @type {string} * @memberof ChallengeTeam */ message?: string; } /** * Check if a given object implements the ChallengeTeam interface. */ export declare function instanceOfChallengeTeam(value: object): value is ChallengeTeam; export declare function ChallengeTeamFromJSON(json: any): ChallengeTeam; export declare function ChallengeTeamFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChallengeTeam; export declare function ChallengeTeamToJSON(json: any): ChallengeTeam; export declare function ChallengeTeamToJSONTyped(value?: ChallengeTeam | null, ignoreDiscriminator?: boolean): any;