/** * 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. */ /** * * @export * @interface ProductCategoryHierarchyResource */ export interface ProductCategoryHierarchyResource { /** * * @type {number} * @memberof ProductCategoryHierarchyResource */ id?: number | null; /** * * @type {string} * @memberof ProductCategoryHierarchyResource */ name: string; /** * * @type {string} * @memberof ProductCategoryHierarchyResource */ slug: string; /** * * @type {number} * @memberof ProductCategoryHierarchyResource */ index: number; /** * * @type {boolean} * @memberof ProductCategoryHierarchyResource */ isAutomated: boolean; /** * * @type {object} * @memberof ProductCategoryHierarchyResource */ children: object; } /** * Check if a given object implements the ProductCategoryHierarchyResource interface. */ export declare function instanceOfProductCategoryHierarchyResource(value: object): value is ProductCategoryHierarchyResource; export declare function ProductCategoryHierarchyResourceFromJSON(json: any): ProductCategoryHierarchyResource; export declare function ProductCategoryHierarchyResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductCategoryHierarchyResource; export declare function ProductCategoryHierarchyResourceToJSON(json: any): ProductCategoryHierarchyResource; export declare function ProductCategoryHierarchyResourceToJSONTyped(value?: ProductCategoryHierarchyResource | null, ignoreDiscriminator?: boolean): any;