/** * 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 { ReviewResource } from './ReviewResource'; /** * * @export * @interface PaginatedReviewResourceResponse */ export interface PaginatedReviewResourceResponse { /** * * @type {Array} * @memberof PaginatedReviewResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedReviewResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedReviewResourceResponse interface. */ export declare function instanceOfPaginatedReviewResourceResponse(value: object): value is PaginatedReviewResourceResponse; export declare function PaginatedReviewResourceResponseFromJSON(json: any): PaginatedReviewResourceResponse; export declare function PaginatedReviewResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedReviewResourceResponse; export declare function PaginatedReviewResourceResponseToJSON(json: any): PaginatedReviewResourceResponse; export declare function PaginatedReviewResourceResponseToJSONTyped(value?: PaginatedReviewResourceResponse | null, ignoreDiscriminator?: boolean): any;