@aftership/web-pixels
Version:
AfterShip Web Pixels for data anaylsis
15 lines (14 loc) • 355 B
TypeScript
export interface IASIdentify {
$customer_id?: string;
$user_pseudo_id?: string;
$session_id?: string;
}
interface IToCIdentify extends IASIdentify {
$am_id?: string;
}
interface IToBIdentify extends IASIdentify {
$account_id?: string;
$organization_id?: string;
}
export type IdentifyData = IToCIdentify | IToBIdentify;
export {};