/** * 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 { ProductCategoryListResource } from './ProductCategoryListResource'; import type { PagingMetadata } from './PagingMetadata'; /** * * @export * @interface PaginatedProductCategoryListResourceResponse */ export interface PaginatedProductCategoryListResourceResponse { /** * * @type {Array} * @memberof PaginatedProductCategoryListResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedProductCategoryListResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedProductCategoryListResourceResponse interface. */ export declare function instanceOfPaginatedProductCategoryListResourceResponse(value: object): value is PaginatedProductCategoryListResourceResponse; export declare function PaginatedProductCategoryListResourceResponseFromJSON(json: any): PaginatedProductCategoryListResourceResponse; export declare function PaginatedProductCategoryListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductCategoryListResourceResponse; export declare function PaginatedProductCategoryListResourceResponseToJSON(json: any): PaginatedProductCategoryListResourceResponse; export declare function PaginatedProductCategoryListResourceResponseToJSONTyped(value?: PaginatedProductCategoryListResourceResponse | null, ignoreDiscriminator?: boolean): any;