/** * 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 { SubmissionSearchResult } from './SubmissionSearchResult'; /** * Response for the request to search through the data access submissions * @export * @interface SubmissionSearchResponse */ export interface SubmissionSearchResponse { /** * The matching submissions information corresponding to the search parameters * @type {Array} * @memberof SubmissionSearchResponse */ results?: Array; /** * A token used to get the next page of a particular search query. * @type {string} * @memberof SubmissionSearchResponse */ nextPageToken?: string; } /** * Check if a given object implements the SubmissionSearchResponse interface. */ export declare function instanceOfSubmissionSearchResponse(value: object): value is SubmissionSearchResponse; export declare function SubmissionSearchResponseFromJSON(json: any): SubmissionSearchResponse; export declare function SubmissionSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubmissionSearchResponse; export declare function SubmissionSearchResponseToJSON(json: any): SubmissionSearchResponse; export declare function SubmissionSearchResponseToJSONTyped(value?: SubmissionSearchResponse | null, ignoreDiscriminator?: boolean): any;