Files
boc/vims-backend/node_modules/twilio/lib/rest/chat/V2.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

21 lines
803 B
TypeScript

import ChatBase from "../ChatBase";
import Version from "../../base/Version";
import { CredentialListInstance } from "./v2/credential";
import { ServiceListInstance } from "./v2/service";
export default class V2 extends Version {
/**
* Initialize the V2 version of Chat
*
* @param domain - The Twilio (Twilio.Chat) domain
*/
constructor(domain: ChatBase);
/** credentials - { Twilio.Chat.V2.CredentialListInstance } resource */
protected _credentials?: CredentialListInstance;
/** services - { Twilio.Chat.V2.ServiceListInstance } resource */
protected _services?: ServiceListInstance;
/** Getter for credentials resource */
get credentials(): CredentialListInstance;
/** Getter for services resource */
get services(): ServiceListInstance;
}