/** * 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 { ReviewListResource } from './ReviewListResource'; /** * * @export * @interface PaginatedReviewListResourceResponse */ export interface PaginatedReviewListResourceResponse { /** * * @type {Array} * @memberof PaginatedReviewListResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedReviewListResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedReviewListResourceResponse interface. */ export declare function instanceOfPaginatedReviewListResourceResponse(value: object): value is PaginatedReviewListResourceResponse; export declare function PaginatedReviewListResourceResponseFromJSON(json: any): PaginatedReviewListResourceResponse; export declare function PaginatedReviewListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedReviewListResourceResponse; export declare function PaginatedReviewListResourceResponseToJSON(json: any): PaginatedReviewListResourceResponse; export declare function PaginatedReviewListResourceResponseToJSONTyped(value?: PaginatedReviewListResourceResponse | null, ignoreDiscriminator?: boolean): any;