Files
boc/vims-backend/node_modules/twilio/lib/rest/events/V1.d.ts
T
Bernt 6de2455917 v1.2.0: Add Global Markets footer, translated to 9 languages
- Added GLOBAL_MARKETS_TITLE to all translation files
- Updated footer with 12 markets (4 active + 8 upcoming)
- Translated market section to: zh-cn, zh-tw, ja, ko, th, vi, id, ms, hi
- Built and deployed to production
- CloudFront invalidation: I3RTMXVFDJXWLG3SYX208OP1CC
2026-07-08 19:56:03 +00:00

31 lines
1.3 KiB
TypeScript

import EventsBase from "../EventsBase";
import Version from "../../base/Version";
import { EventTypeListInstance } from "./v1/eventType";
import { SchemaListInstance } from "./v1/schema";
import { SinkListInstance } from "./v1/sink";
import { SubscriptionListInstance } from "./v1/subscription";
export default class V1 extends Version {
/**
* Initialize the V1 version of Events
*
* @param domain - The Twilio (Twilio.Events) domain
*/
constructor(domain: EventsBase);
/** eventTypes - { Twilio.Events.V1.EventTypeListInstance } resource */
protected _eventTypes?: EventTypeListInstance;
/** schemas - { Twilio.Events.V1.SchemaListInstance } resource */
protected _schemas?: SchemaListInstance;
/** sinks - { Twilio.Events.V1.SinkListInstance } resource */
protected _sinks?: SinkListInstance;
/** subscriptions - { Twilio.Events.V1.SubscriptionListInstance } resource */
protected _subscriptions?: SubscriptionListInstance;
/** Getter for eventTypes resource */
get eventTypes(): EventTypeListInstance;
/** Getter for schemas resource */
get schemas(): SchemaListInstance;
/** Getter for sinks resource */
get sinks(): SinkListInstance;
/** Getter for subscriptions resource */
get subscriptions(): SubscriptionListInstance;
}