/** * 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 ProductRangeFrontendListResource */ export interface ProductRangeFrontendListResource { /** * * @type {number} * @memberof ProductRangeFrontendListResource */ id: number; /** * * @type {string} * @memberof ProductRangeFrontendListResource */ name: string; /** * * @type {string} * @memberof ProductRangeFrontendListResource */ slug: string; /** * * @type {string} * @memberof ProductRangeFrontendListResource */ excerpt: string; /** * * @type {object} * @memberof ProductRangeFrontendListResource */ thumbnail: object; /** * * @type {object} * @memberof ProductRangeFrontendListResource */ categories: object; } /** * Check if a given object implements the ProductRangeFrontendListResource interface. */ export declare function instanceOfProductRangeFrontendListResource(value: object): value is ProductRangeFrontendListResource; export declare function ProductRangeFrontendListResourceFromJSON(json: any): ProductRangeFrontendListResource; export declare function ProductRangeFrontendListResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductRangeFrontendListResource; export declare function ProductRangeFrontendListResourceToJSON(json: any): ProductRangeFrontendListResource; export declare function ProductRangeFrontendListResourceToJSONTyped(value?: ProductRangeFrontendListResource | null, ignoreDiscriminator?: boolean): any;