/** * 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 { AttributeLiteResource } from './AttributeLiteResource'; import type { AttributeValueResource } from './AttributeValueResource'; /** * * @export * @interface ModelAttributeListResource */ export interface ModelAttributeListResource { /** * * @type {number} * @memberof ModelAttributeListResource */ id: number; /** * * @type {string} * @memberof ModelAttributeListResource */ value: string; /** * * @type {AttributeLiteResource} * @memberof ModelAttributeListResource */ attribute: AttributeLiteResource | null; /** * * @type {Array} * @memberof ModelAttributeListResource */ attributeValues: Array | null; /** * * @type {Array} * @memberof ModelAttributeListResource */ selectedValues: Array | null; /** * * @type {string} * @memberof ModelAttributeListResource */ order?: string | null; } /** * Check if a given object implements the ModelAttributeListResource interface. */ export declare function instanceOfModelAttributeListResource(value: object): value is ModelAttributeListResource; export declare function ModelAttributeListResourceFromJSON(json: any): ModelAttributeListResource; export declare function ModelAttributeListResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModelAttributeListResource; export declare function ModelAttributeListResourceToJSON(json: any): ModelAttributeListResource; export declare function ModelAttributeListResourceToJSONTyped(value?: ModelAttributeListResource | null, ignoreDiscriminator?: boolean): any;