/** * 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 AttributeResource */ export interface AttributeResource { /** * * @type {number} * @memberof AttributeResource */ id: number; /** * * @type {string} * @memberof AttributeResource */ name: string; /** * * @type {string} * @memberof AttributeResource */ type: string; /** * * @type {boolean} * @memberof AttributeResource */ isFilterable: boolean; /** * * @type {boolean} * @memberof AttributeResource */ isExpandedByDefault: boolean; /** * * @type {number} * @memberof AttributeResource */ filterIndex: number; /** * * @type {Array} * @memberof AttributeResource */ values: Array | null; /** * * @type {object} * @memberof AttributeResource */ productTypes: object; } /** * Check if a given object implements the AttributeResource interface. */ export declare function instanceOfAttributeResource(value: object): value is AttributeResource; export declare function AttributeResourceFromJSON(json: any): AttributeResource; export declare function AttributeResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttributeResource; export declare function AttributeResourceToJSON(json: any): AttributeResource; export declare function AttributeResourceToJSONTyped(value?: AttributeResource | null, ignoreDiscriminator?: boolean): any;