func()

in responses.go [74:82]


func (res *WebhookResponse) SetSessionParameters(m map[string]any) error {
	res.initializeSessionInfo()
	pm, err := anyToProtoMap(m)
	if err != nil {
		return err
	}
	res.SessionInfo.Parameters = pm
	return nil
}