/** * 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. */ import type { EvaluationRound } from './EvaluationRound'; /** * A single page of the EvaluationRounds currently associated with an Evaluation * @export * @interface EvaluationRoundListResponse */ export interface EvaluationRoundListResponse { /** * * @type {Array} * @memberof EvaluationRoundListResponse */ page?: Array; /** * Forward this token to get the next page of results. * @type {string} * @memberof EvaluationRoundListResponse */ nextPageToken?: string; } /** * Check if a given object implements the EvaluationRoundListResponse interface. */ export declare function instanceOfEvaluationRoundListResponse(value: object): value is EvaluationRoundListResponse; export declare function EvaluationRoundListResponseFromJSON(json: any): EvaluationRoundListResponse; export declare function EvaluationRoundListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): EvaluationRoundListResponse; export declare function EvaluationRoundListResponseToJSON(json: any): EvaluationRoundListResponse; export declare function EvaluationRoundListResponseToJSONTyped(value?: EvaluationRoundListResponse | null, ignoreDiscriminator?: boolean): any;