/** * 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 ModelAttributeResource */ export interface ModelAttributeResource { /** * * @type {number} * @memberof ModelAttributeResource */ id: number; /** * * @type {string} * @memberof ModelAttributeResource */ order?: string | null; /** * * @type {string} * @memberof ModelAttributeResource */ value: string; /** * * @type {AttributeLiteResource} * @memberof ModelAttributeResource */ attribute: AttributeLiteResource | null; /** * * @type {Array} * @memberof ModelAttributeResource */ attributeValues: Array | null; } /** * Check if a given object implements the ModelAttributeResource interface. */ export declare function instanceOfModelAttributeResource(value: object): value is ModelAttributeResource; export declare function ModelAttributeResourceFromJSON(json: any): ModelAttributeResource; export declare function ModelAttributeResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModelAttributeResource; export declare function ModelAttributeResourceToJSON(json: any): ModelAttributeResource; export declare function ModelAttributeResourceToJSONTyped(value?: ModelAttributeResource | null, ignoreDiscriminator?: boolean): any;