fpt-akainsights-react-native
Version:
React Native Plugin for the akaInsights Javascript SDK
25 lines (24 loc) • 769 B
TypeScript
export interface IItemView {
readonly productId: string;
readonly variantId?: string;
readonly title: string;
readonly brand?: string;
readonly price: number;
readonly priceLocalCurrency?: number;
readonly discountPercentage?: number;
readonly discountValue?: number;
readonly originalPrice?: number;
readonly stockLevel?: string;
readonly tags?: string;
readonly category1?: string;
readonly category2?: string;
readonly category3?: string;
readonly categoriesPath?: string;
readonly categoryId?: string;
readonly categoriesIds?: string[];
readonly language?: string;
readonly location?: string;
readonly domain?: string;
readonly userId?: string;
readonly campaignId?: string;
}