UNPKG

fpt-akainsights-react-native

Version:

React Native Plugin for the akaInsights Javascript SDK

35 lines (34 loc) 927 B
import { PurchaseSourceTypeEnum } from '../enums'; export default class ItemPurchaseRequestDto { purchase_id: string; purchase_status: string; purchase_source_type?: PurchaseSourceTypeEnum; product_id: string; variant_id?: string; title: string; brand?: string; category_id?: string; price: number; price_local_currency?: number; discount_percentage?: number; discount_value?: number; original_price?: number; original_price_local_currency?: number; quantity: number; total_price: number; total_price_without_tax?: number; tags?: string; category_1?: string; category_2?: string; category_3?: string; categories_path?: string; categories_ids?: any[]; language?: string; location?: string; domain?: string; created_at: Date; private device_token; user_id?: string; campaign_id?: string; constructor(); }