UNPKG

stripe

Version:
55 lines 1.81 kB
// File generated from our OpenAPI spec import { StripeResource } from '../../../StripeResource.js'; export class EventDestinationResource extends StripeResource { /** * Lists all event destinations. */ list(params, options) { return this._makeRequest('GET', '/v2/core/event_destinations', params, options, { methodType: 'list', }); } /** * Create a new event destination. */ create(params, options) { return this._makeRequest('POST', '/v2/core/event_destinations', params, options); } /** * Delete an event destination. */ del(id, params, options) { return this._makeRequest('DELETE', `/v2/core/event_destinations/${id}`, params, options); } /** * Retrieves the details of an event destination. */ retrieve(id, params, options) { return this._makeRequest('GET', `/v2/core/event_destinations/${id}`, params, options); } /** * Update the details of an event destination. */ update(id, params, options) { return this._makeRequest('POST', `/v2/core/event_destinations/${id}`, params, options); } /** * Disable an event destination. */ disable(id, params, options) { return this._makeRequest('POST', `/v2/core/event_destinations/${id}/disable`, params, options); } /** * Enable an event destination. */ enable(id, params, options) { return this._makeRequest('POST', `/v2/core/event_destinations/${id}/enable`, params, options); } /** * Send a `ping` event to an event destination. */ ping(id, params, options) { return this._makeRequest('POST', `/v2/core/event_destinations/${id}/ping`, params, options); } } //# sourceMappingURL=EventDestinations.js.map