/** * 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 { SiteListResource } from './SiteListResource'; /** * * @export * @interface PaginatedSiteListResourceResponse */ export interface PaginatedSiteListResourceResponse { /** * * @type {Array} * @memberof PaginatedSiteListResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedSiteListResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedSiteListResourceResponse interface. */ export declare function instanceOfPaginatedSiteListResourceResponse(value: object): value is PaginatedSiteListResourceResponse; export declare function PaginatedSiteListResourceResponseFromJSON(json: any): PaginatedSiteListResourceResponse; export declare function PaginatedSiteListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedSiteListResourceResponse; export declare function PaginatedSiteListResourceResponseToJSON(json: any): PaginatedSiteListResourceResponse; export declare function PaginatedSiteListResourceResponseToJSONTyped(value?: PaginatedSiteListResourceResponse | null, ignoreDiscriminator?: boolean): any;