90 lines
3.2 KiB
JavaScript
90 lines
3.2 KiB
JavaScript
"use strict";
|
|
/*
|
|
* This code was generated by
|
|
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
|
|
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
|
|
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
|
|
*
|
|
* Twilio - Api
|
|
* This is the public Twilio REST API.
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator.
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.NewKeyInstance = void 0;
|
|
exports.NewKeyListInstance = NewKeyListInstance;
|
|
const util_1 = require("util");
|
|
const deserialize = require("../../../../base/deserialize");
|
|
const serialize = require("../../../../base/serialize");
|
|
const utility_1 = require("../../../../base/utility");
|
|
function NewKeyListInstance(version, accountSid) {
|
|
if (!(0, utility_1.isValidPathParam)(accountSid)) {
|
|
throw new Error("Parameter 'accountSid' is not valid.");
|
|
}
|
|
const instance = {};
|
|
instance._version = version;
|
|
instance._solution = { accountSid };
|
|
instance._uri = `/Accounts/${accountSid}/Keys.json`;
|
|
instance.create = function create(params, callback) {
|
|
if (params instanceof Function) {
|
|
callback = params;
|
|
params = {};
|
|
}
|
|
else {
|
|
params = params || {};
|
|
}
|
|
let data = {};
|
|
if (params["friendlyName"] !== undefined)
|
|
data["FriendlyName"] = params["friendlyName"];
|
|
const headers = {};
|
|
headers["Content-Type"] = "application/x-www-form-urlencoded";
|
|
headers["Accept"] = "application/json";
|
|
let operationVersion = version, operationPromise = operationVersion.create({
|
|
uri: instance._uri,
|
|
method: "post",
|
|
data,
|
|
headers,
|
|
});
|
|
operationPromise = operationPromise.then((payload) => new NewKeyInstance(operationVersion, payload, instance._solution.accountSid));
|
|
operationPromise = instance._version.setPromiseCallback(operationPromise, callback);
|
|
return operationPromise;
|
|
};
|
|
instance.toJSON = function toJSON() {
|
|
return instance._solution;
|
|
};
|
|
instance[util_1.inspect.custom] = function inspectImpl(_depth, options) {
|
|
return (0, util_1.inspect)(instance.toJSON(), options);
|
|
};
|
|
return instance;
|
|
}
|
|
class NewKeyInstance {
|
|
constructor(_version, payload, accountSid) {
|
|
this._version = _version;
|
|
this.sid = payload.sid;
|
|
this.friendlyName = payload.friendly_name;
|
|
this.dateCreated = deserialize.rfc2822DateTime(payload.date_created);
|
|
this.dateUpdated = deserialize.rfc2822DateTime(payload.date_updated);
|
|
this.secret = payload.secret;
|
|
}
|
|
/**
|
|
* Provide a user-friendly representation
|
|
*
|
|
* @returns Object
|
|
*/
|
|
toJSON() {
|
|
return {
|
|
sid: this.sid,
|
|
friendlyName: this.friendlyName,
|
|
dateCreated: this.dateCreated,
|
|
dateUpdated: this.dateUpdated,
|
|
secret: this.secret,
|
|
};
|
|
}
|
|
[util_1.inspect.custom](_depth, options) {
|
|
return (0, util_1.inspect)(this.toJSON(), options);
|
|
}
|
|
}
|
|
exports.NewKeyInstance = NewKeyInstance;
|