Skip to content

Instantly share code, notes, and snippets.

@DopamineDriven
Created June 7, 2021 08:45
Show Gist options
  • Save DopamineDriven/ba7cc3d8bd5dd4951390e3c6ec6efd96 to your computer and use it in GitHub Desktop.
Save DopamineDriven/ba7cc3d8bd5dd4951390e3c6ec6efd96 to your computer and use it in GitHub Desktop.
EventParams
interface EventParams {
checkout_option?: string;
checkout_step?: number;
content_id?: string;
content_type?: string;
coupon?: string;
currency?: string;
description?: string;
fatal?: boolean;
items?: Item[];
method?: string;
number?: string;
promotions?: Promotion[];
screen_name?: string;
search_term?: string;
shipping?: Currency;
tax?: Currency;
transaction_id?: string;
value?: number;
event_label?: string;
event_category?: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment