import { IAttributeValue } from '../Attribute'; import ITranslation from '../Translation'; export default interface IProductAttribute { readonly id?: string; readonly attribute_id: string; readonly attribute_name: ITranslation[]; readonly values: IAttributeValue[]; readonly default_value?: IAttributeValue | IAttributeValue[]; readonly is_multiple: boolean; readonly overriden_values?: string; }