cloudflare
Version:
The official TypeScript library for the Cloudflare API
19 lines • 846 B
JavaScript
;
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
Object.defineProperty(exports, "__esModule", { value: true });
exports.Details = void 0;
const resource_1 = require("cloudflare/resource");
class Details extends resource_1.APIResource {
/**
* Previews an event's configuration as if it was active. Inherited fields from the
* waiting room will be displayed with their current values.
*/
get(waitingRoomId, eventId, params, options) {
const { zone_id } = params;
return this._client.get(`/zones/${zone_id}/waiting_rooms/${waitingRoomId}/events/${eventId}/details`, options)._thenUnwrap((obj) => obj.result);
}
}
exports.Details = Details;
(function (Details) {
})(Details = exports.Details || (exports.Details = {}));
//# sourceMappingURL=details.js.map