UNPKG

twilio

Version:
85 lines (84 loc) 2.98 kB
"use strict"; /* * This code was generated by * ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ * | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ * | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ * * Twilio - Oauth * 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.AuthorizeInstance = void 0; exports.AuthorizeListInstance = AuthorizeListInstance; const util_1 = require("util"); const deserialize = require("../../../base/deserialize"); const serialize = require("../../../base/serialize"); function AuthorizeListInstance(version) { const instance = {}; instance._version = version; instance._solution = {}; instance._uri = `/authorize`; instance.fetch = function fetch(params, callback) { if (params instanceof Function) { callback = params; params = {}; } else { params = params || {}; } let data = {}; if (params["responseType"] !== undefined) data["ResponseType"] = params["responseType"]; if (params["clientId"] !== undefined) data["ClientId"] = params["clientId"]; if (params["redirectUri"] !== undefined) data["RedirectUri"] = params["redirectUri"]; if (params["scope"] !== undefined) data["Scope"] = params["scope"]; if (params["state"] !== undefined) data["State"] = params["state"]; const headers = {}; headers["Accept"] = "application/json"; let operationVersion = version, operationPromise = operationVersion.fetch({ uri: instance._uri, method: "get", params: data, headers, }); operationPromise = operationPromise.then((payload) => new AuthorizeInstance(operationVersion, payload)); 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 AuthorizeInstance { constructor(_version, payload) { this._version = _version; this.redirectTo = payload.redirect_to; } /** * Provide a user-friendly representation * * @returns Object */ toJSON() { return { redirectTo: this.redirectTo, }; } [util_1.inspect.custom](_depth, options) { return (0, util_1.inspect)(this.toJSON(), options); } } exports.AuthorizeInstance = AuthorizeInstance;