Auto-commit 2026-04-29 16:31
This commit is contained in:
29
node_modules/twilio/lib/rest/Pricing.d.ts
generated
vendored
Normal file
29
node_modules/twilio/lib/rest/Pricing.d.ts
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
import { MessagingListInstance } from "./pricing/v1/messaging";
|
||||
import { PhoneNumberListInstance } from "./pricing/v1/phoneNumber";
|
||||
import { VoiceListInstance } from "./pricing/v2/voice";
|
||||
import { CountryListInstance } from "./pricing/v2/country";
|
||||
import { NumberListInstance } from "./pricing/v2/number";
|
||||
import PricingBase from "./PricingBase";
|
||||
declare class Pricing extends PricingBase {
|
||||
/**
|
||||
* @deprecated - Use v1.messaging instead
|
||||
*/
|
||||
get messaging(): MessagingListInstance;
|
||||
/**
|
||||
* @deprecated - Use v1.phoneNumbers instead
|
||||
*/
|
||||
get phoneNumbers(): PhoneNumberListInstance;
|
||||
/**
|
||||
* @deprecated - Use v2.voice instead
|
||||
*/
|
||||
get voice(): VoiceListInstance;
|
||||
/**
|
||||
* @deprecated - Use v2.countries instead
|
||||
*/
|
||||
get countries(): CountryListInstance;
|
||||
/**
|
||||
* @deprecated - Use v2.numbers instead
|
||||
*/
|
||||
get numbers(): NumberListInstance;
|
||||
}
|
||||
export = Pricing;
|
||||
Reference in New Issue
Block a user