import ITranslation from '../Translation'; import { ISEOInfo } from '../Product'; import { IImageInfo } from '../../utils/file'; import { ExternalServiceSlugEnum } from '../Space/IExternalService'; export default interface IBrand { readonly id?: string; readonly name: ITranslation[]; readonly slug: string; readonly description: ITranslation[]; readonly image?: IImageInfo; readonly seo_info?: ISEOInfo; readonly draft?: boolean; readonly total_products?: number; readonly created_from_external_service?: ExternalServiceSlugEnum; }