6de2455917
- 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
31 lines
1.5 KiB
TypeScript
31 lines
1.5 KiB
TypeScript
import AccountsBase from "../AccountsBase";
|
|
import Version from "../../base/Version";
|
|
import { AuthTokenPromotionListInstance } from "./v1/authTokenPromotion";
|
|
import { CredentialListInstance } from "./v1/credential";
|
|
import { SafelistListInstance } from "./v1/safelist";
|
|
import { SecondaryAuthTokenListInstance } from "./v1/secondaryAuthToken";
|
|
export default class V1 extends Version {
|
|
/**
|
|
* Initialize the V1 version of Accounts
|
|
*
|
|
* @param domain - The Twilio (Twilio.Accounts) domain
|
|
*/
|
|
constructor(domain: AccountsBase);
|
|
/** authTokenPromotion - { Twilio.Accounts.V1.AuthTokenPromotionListInstance } resource */
|
|
protected _authTokenPromotion?: AuthTokenPromotionListInstance;
|
|
/** credentials - { Twilio.Accounts.V1.CredentialListInstance } resource */
|
|
protected _credentials?: CredentialListInstance;
|
|
/** safelist - { Twilio.Accounts.V1.SafelistListInstance } resource */
|
|
protected _safelist?: SafelistListInstance;
|
|
/** secondaryAuthToken - { Twilio.Accounts.V1.SecondaryAuthTokenListInstance } resource */
|
|
protected _secondaryAuthToken?: SecondaryAuthTokenListInstance;
|
|
/** Getter for authTokenPromotion resource */
|
|
get authTokenPromotion(): AuthTokenPromotionListInstance;
|
|
/** Getter for credentials resource */
|
|
get credentials(): CredentialListInstance;
|
|
/** Getter for safelist resource */
|
|
get safelist(): SafelistListInstance;
|
|
/** Getter for secondaryAuthToken resource */
|
|
get secondaryAuthToken(): SecondaryAuthTokenListInstance;
|
|
}
|