/** * 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 { ProductResource } from './ProductResource'; /** * * @export * @interface PaginatedProductResourceResponse */ export interface PaginatedProductResourceResponse { /** * * @type {Array} * @memberof PaginatedProductResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedProductResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedProductResourceResponse interface. */ export declare function instanceOfPaginatedProductResourceResponse(value: object): value is PaginatedProductResourceResponse; export declare function PaginatedProductResourceResponseFromJSON(json: any): PaginatedProductResourceResponse; export declare function PaginatedProductResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductResourceResponse; export declare function PaginatedProductResourceResponseToJSON(json: any): PaginatedProductResourceResponse; export declare function PaginatedProductResourceResponseToJSONTyped(value?: PaginatedProductResourceResponse | null, ignoreDiscriminator?: boolean): any;