UNPKG

tnzapi

Version:

Node.js Library for TNZ Group REST API

18 lines (14 loc) 395 B
function Send(args) { this.AuthToken = args.AuthToken; this.Sender = args.Sender; this.APIKey = args.APIKey; this.URL = args.URL + "/send"; this.Email = require("./Email"); this.SMS = require("./SMS"); this.Fax = require("./Fax"); this.Voice = require("./Voice"); this.TTS = require("./TTS"); return this; } module.exports = Send;