/** * 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 { ProductCategoryHierarchyResource } from './ProductCategoryHierarchyResource'; /** * * @export * @interface ProductCategoryHierarchyResourceArrayResponse */ export interface ProductCategoryHierarchyResourceArrayResponse { /** * * @type {Array} * @memberof ProductCategoryHierarchyResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the ProductCategoryHierarchyResourceArrayResponse interface. */ export declare function instanceOfProductCategoryHierarchyResourceArrayResponse(value: object): value is ProductCategoryHierarchyResourceArrayResponse; export declare function ProductCategoryHierarchyResourceArrayResponseFromJSON(json: any): ProductCategoryHierarchyResourceArrayResponse; export declare function ProductCategoryHierarchyResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductCategoryHierarchyResourceArrayResponse; export declare function ProductCategoryHierarchyResourceArrayResponseToJSON(json: any): ProductCategoryHierarchyResourceArrayResponse; export declare function ProductCategoryHierarchyResourceArrayResponseToJSONTyped(value?: ProductCategoryHierarchyResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;