func()

in responses.go [84:94]


func (res *WebhookResponse) AddSessionParameters(m map[string]any) error {
	res.initializeSessionInfo()
	for k, v := range m {
		pv, err := anyToProto(v)
		if err != nil {
			return err
		}
		res.SessionInfo.Parameters[k] = pv
	}
	return nil
}