Auto-commit 2026-04-29 16:31
This commit is contained in:
31
node_modules/twilio/lib/rest/NotifyBase.js
generated
vendored
Normal file
31
node_modules/twilio/lib/rest/NotifyBase.js
generated
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
"use strict";
|
||||
/*
|
||||
* This code was generated by
|
||||
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
|
||||
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
|
||||
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator.
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
const Domain_1 = __importDefault(require("../base/Domain"));
|
||||
const V1_1 = __importDefault(require("./notify/V1"));
|
||||
class NotifyBase extends Domain_1.default {
|
||||
/**
|
||||
* Initialize notify domain
|
||||
*
|
||||
* @param twilio - The twilio client
|
||||
*/
|
||||
constructor(twilio) {
|
||||
super(twilio, "https://notify.twilio.com");
|
||||
}
|
||||
get v1() {
|
||||
this._v1 = this._v1 || new V1_1.default(this);
|
||||
return this._v1;
|
||||
}
|
||||
}
|
||||
module.exports = NotifyBase;
|
||||
Reference in New Issue
Block a user