/** * 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 { AttachAttributesToProductRangeRequestAttributesInner } from './AttachAttributesToProductRangeRequestAttributesInner'; /** * * @export * @interface AttachAttributesToProductRangeRequest */ export interface AttachAttributesToProductRangeRequest { /** * * @type {Array} * @memberof AttachAttributesToProductRangeRequest */ attributes: Array; } /** * Check if a given object implements the AttachAttributesToProductRangeRequest interface. */ export declare function instanceOfAttachAttributesToProductRangeRequest(value: object): value is AttachAttributesToProductRangeRequest; export declare function AttachAttributesToProductRangeRequestFromJSON(json: any): AttachAttributesToProductRangeRequest; export declare function AttachAttributesToProductRangeRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttachAttributesToProductRangeRequest; export declare function AttachAttributesToProductRangeRequestToJSON(json: any): AttachAttributesToProductRangeRequest; export declare function AttachAttributesToProductRangeRequestToJSONTyped(value?: AttachAttributesToProductRangeRequest | null, ignoreDiscriminator?: boolean): any;