/** * 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 AttachProductChildrenToProductRangeRequest */ export interface AttachProductChildrenToProductRangeRequest { /** * * @type {Array} * @memberof AttachProductChildrenToProductRangeRequest */ productChildIds: Array; } /** * Check if a given object implements the AttachProductChildrenToProductRangeRequest interface. */ export declare function instanceOfAttachProductChildrenToProductRangeRequest(value: object): value is AttachProductChildrenToProductRangeRequest; export declare function AttachProductChildrenToProductRangeRequestFromJSON(json: any): AttachProductChildrenToProductRangeRequest; export declare function AttachProductChildrenToProductRangeRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttachProductChildrenToProductRangeRequest; export declare function AttachProductChildrenToProductRangeRequestToJSON(json: any): AttachProductChildrenToProductRangeRequest; export declare function AttachProductChildrenToProductRangeRequestToJSONTyped(value?: AttachProductChildrenToProductRangeRequest | null, ignoreDiscriminator?: boolean): any;