/** * 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 { AttributeProductTypeRelationResource } from './AttributeProductTypeRelationResource'; /** * * @export * @interface ProductTypeResource */ export interface ProductTypeResource { /** * * @type {number} * @memberof ProductTypeResource */ id: number; /** * * @type {string} * @memberof ProductTypeResource */ name: string; /** * * @type {number} * @memberof ProductTypeResource */ totalAttributes: number; /** * * @type {Array} * @memberof ProductTypeResource */ performanceAttributes: Array | null; /** * * @type {Array} * @memberof ProductTypeResource */ dimensionAttributes: Array | null; /** * * @type {Array} * @memberof ProductTypeResource */ specificationAttributes: Array | null; /** * * @type {Array} * @memberof ProductTypeResource */ otherAttributes: Array | null; /** * * @type {object} * @memberof ProductTypeResource */ productChildren: object; } /** * Check if a given object implements the ProductTypeResource interface. */ export declare function instanceOfProductTypeResource(value: object): value is ProductTypeResource; export declare function ProductTypeResourceFromJSON(json: any): ProductTypeResource; export declare function ProductTypeResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductTypeResource; export declare function ProductTypeResourceToJSON(json: any): ProductTypeResource; export declare function ProductTypeResourceToJSONTyped(value?: ProductTypeResource | null, ignoreDiscriminator?: boolean): any;