UNPKG

@signalwire/compatibility-api

Version:
59 lines (49 loc) 1.44 kB
'use strict'; /* jshint ignore:start */ /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ /* jshint ignore:end */ var _ = require('lodash'); /* jshint ignore:line */ var CredentialList = require('./v1/credential').CredentialList; var ServiceList = require('./v1/service').ServiceList; var Version = require('../../base/Version'); /* jshint ignore:line */ /* jshint ignore:start */ /** * Initialize the V1 version of IpMessaging * * @constructor Twilio.IpMessaging.V1 * * @property {Twilio.IpMessaging.V1.CredentialList} credentials - * credentials resource * @property {Twilio.IpMessaging.V1.ServiceList} services - services resource * * @param {Twilio.IpMessaging} domain - The twilio domain */ /* jshint ignore:end */ function V1(domain) { Version.prototype.constructor.call(this, domain, 'v1'); // Resources this._credentials = undefined; this._services = undefined; } _.extend(V1.prototype, Version.prototype); V1.prototype.constructor = V1; Object.defineProperty(V1.prototype, 'credentials', { get: function() { this._credentials = this._credentials || new CredentialList(this); return this._credentials; } }); Object.defineProperty(V1.prototype, 'services', { get: function() { this._services = this._services || new ServiceList(this); return this._services; } }); module.exports = V1;