Use any instead of interface{} in v2alpha.

This commit is contained in:
John Beisley 2022-03-26 08:05:43 +00:00
parent 69bbc8fbe6
commit 25f9eb3415

View File

@ -44,7 +44,7 @@ type Action struct {
// arguments. See https://pkg.go.dev/encoding/xml@go1.17.1#Marshal and
// https://pkg.go.dev/encoding/xml@go1.17.1#Unmarshal for details on
// annotating fields in the structure.
Args interface{} `xml:",any"`
Args any `xml:",any"`
}
// Write marshals a SOAP envelope to the writer. Errors can be from the writer