/** * 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 get a single page of JSON schema validation results for a given Entity container. * @export * @interface ListValidationResultsRequest */ export interface ListValidationResultsRequest { /** * The ID of the Entity container to get. * @type {string} * @memberof ListValidationResultsRequest */ containerId?: string; /** * Forward the returned 'nextPageToken' to get the next page of results. * @type {string} * @memberof ListValidationResultsRequest */ nextPageToken?: string; } /** * Check if a given object implements the ListValidationResultsRequest interface. */ export declare function instanceOfListValidationResultsRequest(value: object): value is ListValidationResultsRequest; export declare function ListValidationResultsRequestFromJSON(json: any): ListValidationResultsRequest; export declare function ListValidationResultsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListValidationResultsRequest; export declare function ListValidationResultsRequestToJSON(json: any): ListValidationResultsRequest; export declare function ListValidationResultsRequestToJSONTyped(value?: ListValidationResultsRequest | null, ignoreDiscriminator?: boolean): any;