/** * 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 { AccessApprovalNotification } from './AccessApprovalNotification'; /** * Contains the response for an AccessApprovalNotificationRequest. * @export * @interface AccessApprovalNotificationResponse */ export interface AccessApprovalNotificationResponse { /** * The id of the requested access requirement. * @type {number} * @memberof AccessApprovalNotificationResponse */ requirementId?: number; /** * The list of notifications, sorted by the recipient and the sentOn date. * @type {Array} * @memberof AccessApprovalNotificationResponse */ results?: Array; } /** * Check if a given object implements the AccessApprovalNotificationResponse interface. */ export declare function instanceOfAccessApprovalNotificationResponse(value: object): value is AccessApprovalNotificationResponse; export declare function AccessApprovalNotificationResponseFromJSON(json: any): AccessApprovalNotificationResponse; export declare function AccessApprovalNotificationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccessApprovalNotificationResponse; export declare function AccessApprovalNotificationResponseToJSON(json: any): AccessApprovalNotificationResponse; export declare function AccessApprovalNotificationResponseToJSONTyped(value?: AccessApprovalNotificationResponse | null, ignoreDiscriminator?: boolean): any;