UNPKG

strong-soap

Version:
23 lines (20 loc) 640 B
// Copyright IBM Corp. 2016,2017. All Rights Reserved. // Node module: strong-soap // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT 'use strict'; var SOAPElement = require('./soapElement'); var helper = require('../helper'); /** * <soap:body parts="nmtokens"? use="literal|encoded"? * encodingStyle="uri-list"? namespace="uri"?> */ class Body extends SOAPElement { constructor(nsName, attrs, options) { super(nsName, attrs, options); } } Body.elementName = 'body'; Body.allowedChildren = ['documentation']; module.exports = Body; //# sourceMappingURL=body.js.map