/** * 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 WishlistCheckResource */ export interface WishlistCheckResource { /** * * @type {boolean} * @memberof WishlistCheckResource */ inWishlist: boolean; } /** * Check if a given object implements the WishlistCheckResource interface. */ export declare function instanceOfWishlistCheckResource(value: object): value is WishlistCheckResource; export declare function WishlistCheckResourceFromJSON(json: any): WishlistCheckResource; export declare function WishlistCheckResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): WishlistCheckResource; export declare function WishlistCheckResourceToJSON(json: any): WishlistCheckResource; export declare function WishlistCheckResourceToJSONTyped(value?: WishlistCheckResource | null, ignoreDiscriminator?: boolean): any;