We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This appears to be working in the fixtures, but not in my use case.
From Sono's WSDL...
<xs:complexType name="mediaList"> ... <xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:element name="mediaCollection" type="tns:mediaCollection"/> <xs:element name="mediaMetadata" type="tns:mediaMetadata"/> </xs:choice> </xs:complexType>
generates
type MediaList struct { ... MediaCollection *MediaCollection `xml:"mediaCollection,omitempty" json:"mediaCollection,omitempty"` MediaMetadata *MediaMetadata `xml:"mediaMetadata,omitempty" json:"mediaMetadata,omitempty"` }
% gowsdl -v 🍀 % go version go version go1.21.4 darwin/arm64
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This appears to be working in the fixtures, but not in my use case.
From Sono's WSDL...
generates
The text was updated successfully, but these errors were encountered: