/** * 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. */ /** * Settings for a Challenge Project. * @export * @interface Challenge */ export interface Challenge { /** * The ID of this Challenge object * @type {string} * @memberof Challenge */ 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 Challenge */ etag?: string; /** * The ID of the Project the challenge is used with. * @type {string} * @memberof Challenge */ projectId?: string; /** * The ID of the Team which users join to participate in the Challenge * @type {string} * @memberof Challenge */ participantTeamId?: string; } /** * Check if a given object implements the Challenge interface. */ export declare function instanceOfChallenge(value: object): value is Challenge; export declare function ChallengeFromJSON(json: any): Challenge; export declare function ChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): Challenge; export declare function ChallengeToJSON(json: any): Challenge; export declare function ChallengeToJSONTyped(value?: Challenge | null, ignoreDiscriminator?: boolean): any;