/** * 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 AttachSuppliersToStoreRequest */ export interface AttachSuppliersToStoreRequest { /** * * @type {Array} * @memberof AttachSuppliersToStoreRequest */ supplierIds: Array; } /** * Check if a given object implements the AttachSuppliersToStoreRequest interface. */ export declare function instanceOfAttachSuppliersToStoreRequest(value: object): value is AttachSuppliersToStoreRequest; export declare function AttachSuppliersToStoreRequestFromJSON(json: any): AttachSuppliersToStoreRequest; export declare function AttachSuppliersToStoreRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttachSuppliersToStoreRequest; export declare function AttachSuppliersToStoreRequestToJSON(json: any): AttachSuppliersToStoreRequest; export declare function AttachSuppliersToStoreRequestToJSONTyped(value?: AttachSuppliersToStoreRequest | null, ignoreDiscriminator?: boolean): any;