/** * 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. */ /** * * @export * @interface PaginatedResponse */ export interface PaginatedResponse { /** * Pagination link|cursor pointing to the current page. * @type {string} * @memberof PaginatedResponse */ self?: string; /** * Pagination link|cursor pointing to the first page. * @type {string} * @memberof PaginatedResponse */ first?: string; /** * Pagination link|cursor pointing to the previous page. * @type {string} * @memberof PaginatedResponse */ prev?: string; /** * Pagination link|cursor pointing to the next page. * @type {string} * @memberof PaginatedResponse */ next?: string; /** * Pagination link|cursor pointing to the last page. * @type {string} * @memberof PaginatedResponse */ last?: string; /** * Array of collection items. * @type {Array} * @memberof PaginatedResponse */ items: Array; } /** * Check if a given object implements the PaginatedResponse interface. */ export declare function instanceOfPaginatedResponse(value: object): boolean; export declare function PaginatedResponseFromJSON(json: any): PaginatedResponse; export declare function PaginatedResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedResponse; export declare function PaginatedResponseToJSON(value?: PaginatedResponse | null): any;