/** * 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 { ProductCategoryResource } from './ProductCategoryResource'; /** * * @export * @interface ProductCategoryResourceArrayResponse */ export interface ProductCategoryResourceArrayResponse { /** * * @type {Array} * @memberof ProductCategoryResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the ProductCategoryResourceArrayResponse interface. */ export declare function instanceOfProductCategoryResourceArrayResponse(value: object): value is ProductCategoryResourceArrayResponse; export declare function ProductCategoryResourceArrayResponseFromJSON(json: any): ProductCategoryResourceArrayResponse; export declare function ProductCategoryResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductCategoryResourceArrayResponse; export declare function ProductCategoryResourceArrayResponseToJSON(json: any): ProductCategoryResourceArrayResponse; export declare function ProductCategoryResourceArrayResponseToJSONTyped(value?: ProductCategoryResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;