/** * 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 { ProductChildLiteFrontendResource } from './ProductChildLiteFrontendResource'; /** * * @export * @interface ProductParentFrontendResource */ export interface ProductParentFrontendResource { /** * * @type {number} * @memberof ProductParentFrontendResource */ id: number; /** * * @type {string} * @memberof ProductParentFrontendResource */ name: string; /** * * @type {string} * @memberof ProductParentFrontendResource */ description: string; /** * * @type {Array} * @memberof ProductParentFrontendResource */ childProducts: Array | null; } /** * Check if a given object implements the ProductParentFrontendResource interface. */ export declare function instanceOfProductParentFrontendResource(value: object): value is ProductParentFrontendResource; export declare function ProductParentFrontendResourceFromJSON(json: any): ProductParentFrontendResource; export declare function ProductParentFrontendResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductParentFrontendResource; export declare function ProductParentFrontendResourceToJSON(json: any): ProductParentFrontendResource; export declare function ProductParentFrontendResourceToJSONTyped(value?: ProductParentFrontendResource | null, ignoreDiscriminator?: boolean): any;