/** * 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. */ /** * A request to retrieve the notifications for an access requirement and a list of recipients. * @export * @interface AccessApprovalNotificationRequest */ export interface AccessApprovalNotificationRequest { /** * The id of the access requirement. * @type {number} * @memberof AccessApprovalNotificationRequest */ requirementId?: number; /** * The list of recipient ids, max of 25 recipients allowed. * @type {Array} * @memberof AccessApprovalNotificationRequest */ recipientIds?: Array; } /** * Check if a given object implements the AccessApprovalNotificationRequest interface. */ export declare function instanceOfAccessApprovalNotificationRequest(value: object): value is AccessApprovalNotificationRequest; export declare function AccessApprovalNotificationRequestFromJSON(json: any): AccessApprovalNotificationRequest; export declare function AccessApprovalNotificationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccessApprovalNotificationRequest; export declare function AccessApprovalNotificationRequestToJSON(json: any): AccessApprovalNotificationRequest; export declare function AccessApprovalNotificationRequestToJSONTyped(value?: AccessApprovalNotificationRequest | null, ignoreDiscriminator?: boolean): any;