/** * 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 { ProductChildAttributeResource } from './ProductChildAttributeResource'; /** * * @export * @interface ProductChildAttributeGroupedResource */ export interface ProductChildAttributeGroupedResource { /** * * @type {Array} * @memberof ProductChildAttributeGroupedResource */ performance: Array; /** * * @type {Array} * @memberof ProductChildAttributeGroupedResource */ specification: Array; /** * * @type {Array} * @memberof ProductChildAttributeGroupedResource */ dimension: Array; /** * * @type {Array} * @memberof ProductChildAttributeGroupedResource */ other: Array; } /** * Check if a given object implements the ProductChildAttributeGroupedResource interface. */ export declare function instanceOfProductChildAttributeGroupedResource(value: object): value is ProductChildAttributeGroupedResource; export declare function ProductChildAttributeGroupedResourceFromJSON(json: any): ProductChildAttributeGroupedResource; export declare function ProductChildAttributeGroupedResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductChildAttributeGroupedResource; export declare function ProductChildAttributeGroupedResourceToJSON(json: any): ProductChildAttributeGroupedResource; export declare function ProductChildAttributeGroupedResourceToJSONTyped(value?: ProductChildAttributeGroupedResource | null, ignoreDiscriminator?: boolean): any;