/** * 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 AttributeProductTypeRelationResource */ export interface AttributeProductTypeRelationResource { /** * * @type {number} * @memberof AttributeProductTypeRelationResource */ id: number; /** * * @type {string} * @memberof AttributeProductTypeRelationResource */ name: string; /** * * @type {string} * @memberof AttributeProductTypeRelationResource */ type: string; /** * * @type {boolean} * @memberof AttributeProductTypeRelationResource */ isFilterable: boolean; /** * * @type {boolean} * @memberof AttributeProductTypeRelationResource */ isExpandedByDefault: boolean; /** * * @type {number} * @memberof AttributeProductTypeRelationResource */ filterIndex: number; /** * * @type {object} * @memberof AttributeProductTypeRelationResource */ fieldType: object; /** * * @type {number} * @memberof AttributeProductTypeRelationResource */ order: number; /** * * @type {Array} * @memberof AttributeProductTypeRelationResource */ values: Array | null; } /** * Check if a given object implements the AttributeProductTypeRelationResource interface. */ export declare function instanceOfAttributeProductTypeRelationResource(value: object): value is AttributeProductTypeRelationResource; export declare function AttributeProductTypeRelationResourceFromJSON(json: any): AttributeProductTypeRelationResource; export declare function AttributeProductTypeRelationResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttributeProductTypeRelationResource; export declare function AttributeProductTypeRelationResourceToJSON(json: any): AttributeProductTypeRelationResource; export declare function AttributeProductTypeRelationResourceToJSONTyped(value?: AttributeProductTypeRelationResource | null, ignoreDiscriminator?: boolean): any;