mirror of
https://github.com/foomo/sesamy-go.git
synced 2025-10-16 12:35:43 +00:00
9 lines
373 B
Go
9 lines
373 B
Go
package params
|
|
|
|
// SpendVirtualCurrency https://developers.google.com/analytics/devguides/collection/protocol/ga4/reference/events#spend_virtual_currency
|
|
type SpendVirtualCurrency struct {
|
|
Value float64 `json:"value,omitempty"`
|
|
VirtualCurrencyName string `json:"virtual_currency_name,omitempty"`
|
|
ItemName string `json:"item_name,omitempty"`
|
|
}
|