// Code generated by gowsdl DO NOT EDIT.
package myservice
import (
"encoding/xml"
"time"
)
// against "unused imports"
var _ time.Time
var _ xml.Name
type AnyType struct {
InnerXML string `xml:",innerxml"`
}
type AnyURI string
type NCName string
type FooElement struct {
XMLName xml.Name `xml:"http://foo.com/bar/ FooElement"`
}
Hi,
I have a wsdl that looks like this
So I'd expect to generate a struct like the following
but it generates instead
Is xsd:group supported?