/** * 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. */ /** * * @export * @interface AttributeValueResource */ export interface AttributeValueResource { /** * * @type {number} * @memberof AttributeValueResource */ id: number; /** * * @type {string} * @memberof AttributeValueResource */ value: string; } /** * Check if a given object implements the AttributeValueResource interface. */ export declare function instanceOfAttributeValueResource(value: object): value is AttributeValueResource; export declare function AttributeValueResourceFromJSON(json: any): AttributeValueResource; export declare function AttributeValueResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttributeValueResource; export declare function AttributeValueResourceToJSON(json: any): AttributeValueResource; export declare function AttributeValueResourceToJSONTyped(value?: AttributeValueResource | null, ignoreDiscriminator?: boolean): any;