/** * 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 { AttachDocumentsToProductChildRequestDocumentsInner } from './AttachDocumentsToProductChildRequestDocumentsInner'; /** * * @export * @interface AttachDocumentsToProductRangeRequest */ export interface AttachDocumentsToProductRangeRequest { /** * * @type {Array} * @memberof AttachDocumentsToProductRangeRequest */ documents: Array; } /** * Check if a given object implements the AttachDocumentsToProductRangeRequest interface. */ export declare function instanceOfAttachDocumentsToProductRangeRequest(value: object): value is AttachDocumentsToProductRangeRequest; export declare function AttachDocumentsToProductRangeRequestFromJSON(json: any): AttachDocumentsToProductRangeRequest; export declare function AttachDocumentsToProductRangeRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttachDocumentsToProductRangeRequest; export declare function AttachDocumentsToProductRangeRequestToJSON(json: any): AttachDocumentsToProductRangeRequest; export declare function AttachDocumentsToProductRangeRequestToJSONTyped(value?: AttachDocumentsToProductRangeRequest | null, ignoreDiscriminator?: boolean): any;