/** * 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 { DescriptionResource } from './DescriptionResource'; import type { AssetResource } from './AssetResource'; import type { SEOResource } from './SEOResource'; /** * * @export * @interface SupplierResource */ export interface SupplierResource { /** * * @type {number} * @memberof SupplierResource */ id: number; /** * * @type {string} * @memberof SupplierResource */ name: string; /** * * @type {string} * @memberof SupplierResource */ slug: string; /** * * @type {AssetResource} * @memberof SupplierResource */ thumbnail: AssetResource | null; /** * * @type {number} * @memberof SupplierResource */ supplierEta: number; /** * * @type {boolean} * @memberof SupplierResource */ productEnquiriesOnly: boolean; /** * * @type {boolean} * @memberof SupplierResource */ showReturnsBanner: boolean; /** * * @type {Array} * @memberof SupplierResource */ seo: Array | null; /** * * @type {Array} * @memberof SupplierResource */ descriptions: Array | null; } /** * Check if a given object implements the SupplierResource interface. */ export declare function instanceOfSupplierResource(value: object): value is SupplierResource; export declare function SupplierResourceFromJSON(json: any): SupplierResource; export declare function SupplierResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupplierResource; export declare function SupplierResourceToJSON(json: any): SupplierResource; export declare function SupplierResourceToJSONTyped(value?: SupplierResource | null, ignoreDiscriminator?: boolean): any;