/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { Pageable } from './Pageable'; import type { ProductCompleteDTO } from './ProductCompleteDTO'; import type { Sort } from './Sort'; export type SliceProductCompleteDTO = { content?: Array; empty?: boolean; first?: boolean; last?: boolean; number?: number; numberOfElements?: number; pageable?: Pageable; size?: number; sort?: Sort; }