/** * 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 { ReviewLiteResource } from './ReviewLiteResource'; /** * * @export * @interface PaginatedReviewLiteResourceResponse */ export interface PaginatedReviewLiteResourceResponse { /** * * @type {Array} * @memberof PaginatedReviewLiteResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedReviewLiteResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedReviewLiteResourceResponse interface. */ export declare function instanceOfPaginatedReviewLiteResourceResponse(value: object): value is PaginatedReviewLiteResourceResponse; export declare function PaginatedReviewLiteResourceResponseFromJSON(json: any): PaginatedReviewLiteResourceResponse; export declare function PaginatedReviewLiteResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedReviewLiteResourceResponse; export declare function PaginatedReviewLiteResourceResponseToJSON(json: any): PaginatedReviewLiteResourceResponse; export declare function PaginatedReviewLiteResourceResponseToJSONTyped(value?: PaginatedReviewLiteResourceResponse | null, ignoreDiscriminator?: boolean): any;