/** * 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 GlobalSearchProductResource */ export interface GlobalSearchProductResource { /** * * @type {number} * @memberof GlobalSearchProductResource */ id: number; /** * * @type {string} * @memberof GlobalSearchProductResource */ name: string; /** * * @type {string} * @memberof GlobalSearchProductResource */ model: string; /** * * @type {string} * @memberof GlobalSearchProductResource */ modelRaw: string; /** * * @type {string} * @memberof GlobalSearchProductResource */ slug: string; /** * * @type {string} * @memberof GlobalSearchProductResource */ sku: string; /** * * @type {string} * @memberof GlobalSearchProductResource */ thumbnail: string; /** * * @type {number} * @memberof GlobalSearchProductResource */ price: number; /** * * @type {number} * @memberof GlobalSearchProductResource */ salePrice: number; /** * * @type {number} * @memberof GlobalSearchProductResource */ averageRating: number; /** * * @type {string} * @memberof GlobalSearchProductResource */ supplierName: string; /** * * @type {Array} * @memberof GlobalSearchProductResource */ categories: Array; } /** * Check if a given object implements the GlobalSearchProductResource interface. */ export declare function instanceOfGlobalSearchProductResource(value: object): value is GlobalSearchProductResource; export declare function GlobalSearchProductResourceFromJSON(json: any): GlobalSearchProductResource; export declare function GlobalSearchProductResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): GlobalSearchProductResource; export declare function GlobalSearchProductResourceToJSON(json: any): GlobalSearchProductResource; export declare function GlobalSearchProductResourceToJSONTyped(value?: GlobalSearchProductResource | null, ignoreDiscriminator?: boolean): any;