/** * 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. */ import type { AssetLiteResource } from './AssetLiteResource'; /** * * @export * @interface SupplierListResource */ export interface SupplierListResource { /** * * @type {number} * @memberof SupplierListResource */ id: number; /** * * @type {string} * @memberof SupplierListResource */ name: string; /** * * @type {string} * @memberof SupplierListResource */ slug: string; /** * * @type {AssetLiteResource} * @memberof SupplierListResource */ thumbnail: AssetLiteResource | null; /** * * @type {number} * @memberof SupplierListResource */ supplierEta: number; } /** * Check if a given object implements the SupplierListResource interface. */ export declare function instanceOfSupplierListResource(value: object): value is SupplierListResource; export declare function SupplierListResourceFromJSON(json: any): SupplierListResource; export declare function SupplierListResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupplierListResource; export declare function SupplierListResourceToJSON(json: any): SupplierListResource; export declare function SupplierListResourceToJSONTyped(value?: SupplierListResource | null, ignoreDiscriminator?: boolean): any;