/** * My API * API documentation for my Laravel app * * The version of the OpenAPI document: 1.0.0 * * * 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 { PagingMetadata } from './PagingMetadata'; import type { SiteNotificationResource } from './SiteNotificationResource'; /** * * @export * @interface PaginatedSiteNotificationResourceResponse */ export interface PaginatedSiteNotificationResourceResponse { /** * * @type {Array} * @memberof PaginatedSiteNotificationResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedSiteNotificationResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedSiteNotificationResourceResponse interface. */ export declare function instanceOfPaginatedSiteNotificationResourceResponse(value: object): value is PaginatedSiteNotificationResourceResponse; export declare function PaginatedSiteNotificationResourceResponseFromJSON(json: any): PaginatedSiteNotificationResourceResponse; export declare function PaginatedSiteNotificationResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedSiteNotificationResourceResponse; export declare function PaginatedSiteNotificationResourceResponseToJSON(json: any): PaginatedSiteNotificationResourceResponse; export declare function PaginatedSiteNotificationResourceResponseToJSONTyped(value?: PaginatedSiteNotificationResourceResponse | null, ignoreDiscriminator?: boolean): any;