/** * 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 { ProductListResource } from './ProductListResource'; /** * * @export * @interface PaginatedProductListResourceResponse */ export interface PaginatedProductListResourceResponse { /** * * @type {Array} * @memberof PaginatedProductListResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedProductListResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedProductListResourceResponse interface. */ export declare function instanceOfPaginatedProductListResourceResponse(value: object): value is PaginatedProductListResourceResponse; export declare function PaginatedProductListResourceResponseFromJSON(json: any): PaginatedProductListResourceResponse; export declare function PaginatedProductListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductListResourceResponse; export declare function PaginatedProductListResourceResponseToJSON(json: any): PaginatedProductListResourceResponse; export declare function PaginatedProductListResourceResponseToJSONTyped(value?: PaginatedProductListResourceResponse | null, ignoreDiscriminator?: boolean): any;