/** * 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 { AccessApprovalSearchSort } from './AccessApprovalSearchSort'; /** * A request to search through the access approval history * @export * @interface AccessApprovalSearchRequest */ export interface AccessApprovalSearchRequest { /** * Filter by the id of the principal that is an accessor in the approval. Note that the submitter is always part of the accessors. This field is required. * @type {string} * @memberof AccessApprovalSearchRequest */ accessorId: string; /** * Filter by the id of the access requirement of the approvals. * @type {string} * @memberof AccessApprovalSearchRequest */ accessRequirementId?: string; /** * * @type {Array} * @memberof AccessApprovalSearchRequest */ sort?: Array; /** * A token used to get the next page of a request. * @type {string} * @memberof AccessApprovalSearchRequest */ nextPageToken?: string; } /** * Check if a given object implements the AccessApprovalSearchRequest interface. */ export declare function instanceOfAccessApprovalSearchRequest(value: object): value is AccessApprovalSearchRequest; export declare function AccessApprovalSearchRequestFromJSON(json: any): AccessApprovalSearchRequest; export declare function AccessApprovalSearchRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccessApprovalSearchRequest; export declare function AccessApprovalSearchRequestToJSON(json: any): AccessApprovalSearchRequest; export declare function AccessApprovalSearchRequestToJSONTyped(value?: AccessApprovalSearchRequest | null, ignoreDiscriminator?: boolean): any;