twilio
Version:
A Twilio helper library
95 lines (94 loc) • 3.61 kB
JavaScript
;
/*
* 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.FeedbackInstance = void 0;
exports.FeedbackListInstance = FeedbackListInstance;
const util_1 = require("util");
const deserialize = require("../../../../../base/deserialize");
const serialize = require("../../../../../base/serialize");
const utility_1 = require("../../../../../base/utility");
function FeedbackListInstance(version, accountSid, messageSid) {
if (!(0, utility_1.isValidPathParam)(accountSid)) {
throw new Error("Parameter 'accountSid' is not valid.");
}
if (!(0, utility_1.isValidPathParam)(messageSid)) {
throw new Error("Parameter 'messageSid' is not valid.");
}
const instance = {};
instance._version = version;
instance._solution = { accountSid, messageSid };
instance._uri = `/Accounts/${accountSid}/Messages/${messageSid}/Feedback.json`;
instance.create = function create(params, callback) {
if (params instanceof Function) {
callback = params;
params = {};
}
else {
params = params || {};
}
let data = {};
if (params["outcome"] !== undefined)
data["Outcome"] = params["outcome"];
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 FeedbackInstance(operationVersion, payload, instance._solution.accountSid, instance._solution.messageSid));
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 FeedbackInstance {
constructor(_version, payload, accountSid, messageSid) {
this._version = _version;
this.accountSid = payload.account_sid;
this.messageSid = payload.message_sid;
this.outcome = payload.outcome;
this.dateCreated = deserialize.rfc2822DateTime(payload.date_created);
this.dateUpdated = deserialize.rfc2822DateTime(payload.date_updated);
this.uri = payload.uri;
}
/**
* Provide a user-friendly representation
*
* @returns Object
*/
toJSON() {
return {
accountSid: this.accountSid,
messageSid: this.messageSid,
outcome: this.outcome,
dateCreated: this.dateCreated,
dateUpdated: this.dateUpdated,
uri: this.uri,
};
}
[util_1.inspect.custom](_depth, options) {
return (0, util_1.inspect)(this.toJSON(), options);
}
}
exports.FeedbackInstance = FeedbackInstance;