/** * 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 { AccessApprovalSearchResult } from './AccessApprovalSearchResult'; /** * Response for the request to search through the access approval history * @export * @interface AccessApprovalSearchResponse */ export interface AccessApprovalSearchResponse { /** * The matching Access Approval information corresponding to the search parameters * @type {Array} * @memberof AccessApprovalSearchResponse */ results?: Array; /** * A token used to get the next page of a particular search query. * @type {string} * @memberof AccessApprovalSearchResponse */ nextPageToken?: string; } /** * Check if a given object implements the AccessApprovalSearchResponse interface. */ export declare function instanceOfAccessApprovalSearchResponse(value: object): value is AccessApprovalSearchResponse; export declare function AccessApprovalSearchResponseFromJSON(json: any): AccessApprovalSearchResponse; export declare function AccessApprovalSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccessApprovalSearchResponse; export declare function AccessApprovalSearchResponseToJSON(json: any): AccessApprovalSearchResponse; export declare function AccessApprovalSearchResponseToJSONTyped(value?: AccessApprovalSearchResponse | null, ignoreDiscriminator?: boolean): any;