github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil.XMLNode.Text (field)

14 uses

	github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil (current package)
		build.go#L257: 		kchild.Text = k
		build.go#L312: 		current.AddChild(&XMLNode{Name: xname, Text: str})
		unmarshal.go#L153: 				elems = []*XMLNode{{Text: val}}
		unmarshal.go#L239: 			keyR := reflect.ValueOf(key.Text)
		unmarshal.go#L258: 		r.Set(reflect.ValueOf(&node.Text))
		unmarshal.go#L261: 		b, err := base64.StdEncoding.DecodeString(node.Text)
		unmarshal.go#L267: 		v, err := strconv.ParseBool(node.Text)
		unmarshal.go#L273: 		v, err := strconv.ParseInt(node.Text, 10, 64)
		unmarshal.go#L279: 		v, err := strconv.ParseFloat(node.Text, 64)
		unmarshal.go#L290: 		t, err := protocol.ParseTime(format, node.Text)
		xml_to_struct.go#L14: 	Text     string                `json:",omitempty"`
		xml_to_struct.go#L58: 			out.Text = string(typed.Copy())
		xml_to_struct.go#L135: 	if node.Text != "" {
		xml_to_struct.go#L136: 		e.EncodeToken(xml.CharData([]byte(node.Text)))