/** * 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 WishlistToggleResource */ export interface WishlistToggleResource { /** * * @type {string} * @memberof WishlistToggleResource */ action: string; /** * * @type {object} * @memberof WishlistToggleResource */ product: object; } /** * Check if a given object implements the WishlistToggleResource interface. */ export declare function instanceOfWishlistToggleResource(value: object): value is WishlistToggleResource; export declare function WishlistToggleResourceFromJSON(json: any): WishlistToggleResource; export declare function WishlistToggleResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): WishlistToggleResource; export declare function WishlistToggleResourceToJSON(json: any): WishlistToggleResource; export declare function WishlistToggleResourceToJSONTyped(value?: WishlistToggleResource | null, ignoreDiscriminator?: boolean): any;