/** * 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 { CustomerReviewableItemFrontendResource } from './CustomerReviewableItemFrontendResource'; /** * * @export * @interface PaginatedCustomerReviewableItemFrontendResourceResponse */ export interface PaginatedCustomerReviewableItemFrontendResourceResponse { /** * * @type {Array} * @memberof PaginatedCustomerReviewableItemFrontendResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedCustomerReviewableItemFrontendResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedCustomerReviewableItemFrontendResourceResponse interface. */ export declare function instanceOfPaginatedCustomerReviewableItemFrontendResourceResponse(value: object): value is PaginatedCustomerReviewableItemFrontendResourceResponse; export declare function PaginatedCustomerReviewableItemFrontendResourceResponseFromJSON(json: any): PaginatedCustomerReviewableItemFrontendResourceResponse; export declare function PaginatedCustomerReviewableItemFrontendResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedCustomerReviewableItemFrontendResourceResponse; export declare function PaginatedCustomerReviewableItemFrontendResourceResponseToJSON(json: any): PaginatedCustomerReviewableItemFrontendResourceResponse; export declare function PaginatedCustomerReviewableItemFrontendResourceResponseToJSONTyped(value?: PaginatedCustomerReviewableItemFrontendResourceResponse | null, ignoreDiscriminator?: boolean): any;