strong-soap
Version:
A minimal node SOAP client
16 lines (11 loc) • 323 B
JavaScript
;
var XSDElement = require('./xsdElement');
class Choice extends XSDElement {
constructor(nsName, attrs, options) {
super(nsName, attrs, options);
}
}
Choice.elementName = 'choice';
Choice.allowedChildren = ['annotation', 'element', 'group', 'sequence',
'choice', 'any'];
module.exports = Choice;