import { IkasHTMLMetaData } from "../html-meta-data";
import { IkasImage } from "../image";
import { IkasProductBrandTranslation } from "./translation";
export type IkasBrand = {
id: string;
createdAt: number;
updatedAt: number;
deleted?: boolean | null;
description: string | null;
imageId: string | null;
name: string;
metaData: IkasHTMLMetaData | null;
orderType: IkasBrandOrderType | null;
image?: IkasImage | null;
translations?: IkasProductBrandTranslation[] | null;
};
export type IkasBrandOrderType = "BEST_SELLER" | "HIGHEST_DISCOUNT_RATIO" | "HIGHEST_PRICE" | "LOWEST_DISCOUNT_RATIO" | "LOWEST_PRICE" | "MANUALLY" | "NEWEST" | "OLDEST";