/** * Notifications API * An API to create and read notifications * * The version of the OpenAPI document: 1.0.0 * Contact: DevTeamProduct@digitalrealty.com * * 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 { Notification } from './Notification.js'; /** * * @export * @interface GetNotifications200Response */ export interface GetNotifications200Response { /** * Pagination link|cursor pointing to the current page. * @type {string} * @memberof GetNotifications200Response */ self?: string; /** * Pagination link|cursor pointing to the first page. * @type {string} * @memberof GetNotifications200Response */ first?: string; /** * Pagination link|cursor pointing to the previous page. * @type {string} * @memberof GetNotifications200Response */ prev?: string; /** * Pagination link|cursor pointing to the next page. * @type {string} * @memberof GetNotifications200Response */ next?: string; /** * Pagination link|cursor pointing to the last page. * @type {string} * @memberof GetNotifications200Response */ last?: string; /** * * @type {Array} * @memberof GetNotifications200Response */ items: Array; } /** * Check if a given object implements the GetNotifications200Response interface. */ export declare function instanceOfGetNotifications200Response(value: object): boolean; export declare function GetNotifications200ResponseFromJSON(json: any): GetNotifications200Response; export declare function GetNotifications200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetNotifications200Response; export declare function GetNotifications200ResponseToJSON(value?: GetNotifications200Response | null): any;