/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { CompatibilityEntry } from './CompatibilityEntry'; /** * GET /v1/products/{id}/substitutes or /compatibility response. */ export type CompatibilityOut = { /** * ID of the product in the URL path */ product_id: number; /** * Filter applied to relation_type ('substitute' or 'compatible') */ relation_filter: string; rows?: Array; /** * Total matching rows across all pages */ total: number; /** * Page size. */ limit: number; /** * Skip-count. */ offset: number; };