/** * 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 { AttributeValueResource } from './AttributeValueResource'; /** * * @export * @interface ProductChildAttributeResource */ export interface ProductChildAttributeResource { /** * * @type {number} * @memberof ProductChildAttributeResource */ id: number; /** * * @type {string} * @memberof ProductChildAttributeResource */ name: string; /** * * @type {string} * @memberof ProductChildAttributeResource */ type: string; /** * * @type {number} * @memberof ProductChildAttributeResource */ order: number; /** * * @type {Array} * @memberof ProductChildAttributeResource */ values: Array | null; /** * * @type {number} * @memberof ProductChildAttributeResource */ modelAttributeId: number; /** * * @type {Array} * @memberof ProductChildAttributeResource */ selectedValues: Array; /** * * @type {string} * @memberof ProductChildAttributeResource */ textValue?: string | null; } /** * Check if a given object implements the ProductChildAttributeResource interface. */ export declare function instanceOfProductChildAttributeResource(value: object): value is ProductChildAttributeResource; export declare function ProductChildAttributeResourceFromJSON(json: any): ProductChildAttributeResource; export declare function ProductChildAttributeResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductChildAttributeResource; export declare function ProductChildAttributeResourceToJSON(json: any): ProductChildAttributeResource; export declare function ProductChildAttributeResourceToJSONTyped(value?: ProductChildAttributeResource | null, ignoreDiscriminator?: boolean): any;