Is it the way to set event-level properties in bulk?
const event_properties = {
event_type: 'page view',
loggedin:{{loggedin}},
ehash:{{ehash}},
post_type:{{post_type}},
internal:{{internal}}
};
const event = {
event_type: "view_homepage",
event_properties,
//groups: { 'role': 'analytics' },
//group_properties: { 'groupPropertyKey': 'groupPropertyValue' }
};
amplitude.track(event);
Will i be able to use the similar way to set up Configuration settings and User Properties in Google Tag? Thanks