/** * 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 { ProductCategoryResource } from './ProductCategoryResource'; /** * * @export * @interface PaginatedProductCategoryResourceResponse */ export interface PaginatedProductCategoryResourceResponse { /** * * @type {Array} * @memberof PaginatedProductCategoryResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedProductCategoryResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedProductCategoryResourceResponse interface. */ export declare function instanceOfPaginatedProductCategoryResourceResponse(value: object): value is PaginatedProductCategoryResourceResponse; export declare function PaginatedProductCategoryResourceResponseFromJSON(json: any): PaginatedProductCategoryResourceResponse; export declare function PaginatedProductCategoryResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductCategoryResourceResponse; export declare function PaginatedProductCategoryResourceResponseToJSON(json: any): PaginatedProductCategoryResourceResponse; export declare function PaginatedProductCategoryResourceResponseToJSONTyped(value?: PaginatedProductCategoryResourceResponse | null, ignoreDiscriminator?: boolean): any;