/** * 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. */ /** * Request to list a single page of EvaluationRounds associated with an Evaluation * @export * @interface EvaluationRoundListRequest */ export interface EvaluationRoundListRequest { /** * Forward the returned 'nextPageToken' to get the next page of results. * @type {string} * @memberof EvaluationRoundListRequest */ nextPageToken?: string; } /** * Check if a given object implements the EvaluationRoundListRequest interface. */ export declare function instanceOfEvaluationRoundListRequest(value: object): value is EvaluationRoundListRequest; export declare function EvaluationRoundListRequestFromJSON(json: any): EvaluationRoundListRequest; export declare function EvaluationRoundListRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): EvaluationRoundListRequest; export declare function EvaluationRoundListRequestToJSON(json: any): EvaluationRoundListRequest; export declare function EvaluationRoundListRequestToJSONTyped(value?: EvaluationRoundListRequest | null, ignoreDiscriminator?: boolean): any;