UNPKG

@stordata/vsphere-soapify

Version:

A NodeJS abstraction layer for the vSphere SOAP API

16 lines (13 loc) 294 B
'use strict'; const Action = require('./Action'); module.exports = class SendEmailAction extends Action { static mappings() { return { ...super.mappings(), subject: 'xsd:string', body: 'xsd:string', toList: 'xsd:string', ccList: 'xsd:string' }; } };