/** * 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'; /** * * @export * @interface ProductCategoryListResourceArrayResponse */ export interface ProductCategoryListResourceArrayResponse { /** * * @type {Array} * @memberof ProductCategoryListResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the ProductCategoryListResourceArrayResponse interface. */ export declare function instanceOfProductCategoryListResourceArrayResponse(value: object): value is ProductCategoryListResourceArrayResponse; export declare function ProductCategoryListResourceArrayResponseFromJSON(json: any): ProductCategoryListResourceArrayResponse; export declare function ProductCategoryListResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductCategoryListResourceArrayResponse; export declare function ProductCategoryListResourceArrayResponseToJSON(json: any): ProductCategoryListResourceArrayResponse; export declare function ProductCategoryListResourceArrayResponseToJSONTyped(value?: ProductCategoryListResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;