/** * 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 AttachProductsToProductCategoryRequest */ export interface AttachProductsToProductCategoryRequest { /** * * @type {Array} * @memberof AttachProductsToProductCategoryRequest */ productChildIds: Array; } /** * Check if a given object implements the AttachProductsToProductCategoryRequest interface. */ export declare function instanceOfAttachProductsToProductCategoryRequest(value: object): value is AttachProductsToProductCategoryRequest; export declare function AttachProductsToProductCategoryRequestFromJSON(json: any): AttachProductsToProductCategoryRequest; export declare function AttachProductsToProductCategoryRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttachProductsToProductCategoryRequest; export declare function AttachProductsToProductCategoryRequestToJSON(json: any): AttachProductsToProductCategoryRequest; export declare function AttachProductsToProductCategoryRequestToJSONTyped(value?: AttachProductsToProductCategoryRequest | null, ignoreDiscriminator?: boolean): any;