type EventContext struct { event map[string]any resourceContext map[string]any } Both 'event' and 'resourceContext' are private fields that cannot be accessed in Factory method. Please make them public.
type EventContext struct {
event map[string]any
resourceContext map[string]any
}
Both 'event' and 'resourceContext' are private fields that cannot be accessed in Factory method. Please make them public.