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