Created
June 7, 2021 08:45
-
-
Save DopamineDriven/ba7cc3d8bd5dd4951390e3c6ec6efd96 to your computer and use it in GitHub Desktop.
EventParams
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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