You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/rest/api/v2010/account/address.ts
+16-16
Original file line number
Diff line number
Diff line change
@@ -386,67 +386,67 @@ export class AddressInstance {
386
386
}
387
387
388
388
/**
389
-
* The SID of the Account that is responsible for the resource
389
+
* The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that is responsible for the Address resource.
390
390
*/
391
391
accountSid: string;
392
392
/**
393
-
* The city in which the address is located
393
+
* The city in which the address is located.
394
394
*/
395
395
city: string;
396
396
/**
397
-
* The name associated with the address
397
+
* The name associated with the address.This property has a maximum length of 16 4-byte characters, or 21 3-byte characters.
398
398
*/
399
399
customerName: string;
400
400
/**
401
-
* The RFC 2822 date and time in GMT that the resource was created
401
+
* The date and time in GMT that the resource was created specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format.
402
402
*/
403
403
dateCreated: Date;
404
404
/**
405
-
* The RFC 2822 date and time in GMT that the resource was last updated
405
+
* The date and time in GMT that the resource was last updated specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format.
406
406
*/
407
407
dateUpdated: Date;
408
408
/**
409
-
* The string that you assigned to describe the resource
409
+
* The string that you assigned to describe the resource.
410
410
*/
411
411
friendlyName: string;
412
412
/**
413
-
* The ISO country code of the address
413
+
* The ISO country code of the address.
414
414
*/
415
415
isoCountry: string;
416
416
/**
417
-
* The postal code of the address
417
+
* The postal code of the address.
418
418
*/
419
419
postalCode: string;
420
420
/**
421
-
* The state or region of the address
421
+
* The state or region of the address.
422
422
*/
423
423
region: string;
424
424
/**
425
-
* The unique string that identifies the resource
425
+
* The unique string that that we created to identify the Address resource.
426
426
*/
427
427
sid: string;
428
428
/**
429
-
* The number and street address of the address
429
+
* The number and street address of the address.
430
430
*/
431
431
street: string;
432
432
/**
433
-
* The URI of the resource, relative to `https://api.twilio.com`
433
+
* The URI of the resource, relative to `https://api.twilio.com`.
434
434
*/
435
435
uri: string;
436
436
/**
437
-
* Whether emergency calling has been enabled on this number
437
+
* Whether emergency calling has been enabled on this number.
438
438
*/
439
439
emergencyEnabled: boolean;
440
440
/**
441
-
* Whether the address has been validated to comply with local regulation
441
+
* Whether the address has been validated to comply with local regulation. In countries that require valid addresses, an invalid address will not be accepted. `true` indicates the Address has been validated. `false` indicate the country doesn\'t require validation or the Address is not valid.
442
442
*/
443
443
validated: boolean;
444
444
/**
445
-
* Whether the address has been verified to comply with regulation
445
+
* Whether the address has been verified to comply with regulation. In countries that require valid addresses, an invalid address will not be accepted. `true` indicates the Address has been verified. `false` indicate the country doesn\'t require verified or the Address is not valid.
446
446
*/
447
447
verified: boolean;
448
448
/**
449
-
* The additional number and street address of the address
449
+
* The additional number and street address of the address.
Copy file name to clipboardExpand all lines: lib/rest/api/v2010/account/address/dependentPhoneNumber.ts
+24-24
Original file line number
Diff line number
Diff line change
@@ -371,101 +371,101 @@ export class DependentPhoneNumberInstance {
371
371
}
372
372
373
373
/**
374
-
* The unique string that identifies the resource
374
+
* The unique string that that we created to identify the DependentPhoneNumber resource.
375
375
*/
376
376
sid: string;
377
377
/**
378
-
* The SID of the Account that created the resource
378
+
* The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the DependentPhoneNumber resource.
379
379
*/
380
380
accountSid: string;
381
381
/**
382
-
* The string that you assigned to describe the resource
382
+
* The string that you assigned to describe the resource.
383
383
*/
384
384
friendlyName: string;
385
385
/**
386
-
* The phone number in E.164 format
386
+
* The phone number in [E.164](https://www.twilio.com/docs/glossary/what-e164) format, which consists of a + followed by the country code and subscriber number.
387
387
*/
388
388
phoneNumber: string;
389
389
/**
390
-
* The URL we call when the phone number receives a call
390
+
* The URL we call when the phone number receives a call. The `voice_url` will not be used if a `voice_application_sid` or a `trunk_sid` is set.
391
391
*/
392
392
voiceUrl: string;
393
393
/**
394
-
* The HTTP method used with the voice_url
394
+
* The HTTP method we use to call `voice_url`. Can be: `GET` or `POST`.
395
395
*/
396
396
voiceMethod: DependentPhoneNumberVoiceMethod;
397
397
/**
398
-
* The HTTP method used with voice_fallback_url
398
+
* The HTTP method we use to call `voice_fallback_url`. Can be: `GET` or `POST`.
* Indicate if a phone can receive calls or messages
435
+
* The set of Boolean properties that indicates whether a phone number can receive calls or messages. Capabilities are `Voice`, `SMS`, and `MMS` and each capability can be: `true` or `false`.
436
436
*/
437
437
capabilities: any;
438
438
/**
439
-
* The URL to send status information to your application
439
+
* The URL we call using the `status_callback_method` to send status information to your application.
440
440
*/
441
441
statusCallback: string;
442
442
/**
443
-
* The HTTP method we use to call status_callback
443
+
* The HTTP method we use to call `status_callback`. Can be: `GET` or `POST`.
* The API version used to start a new TwiML session
447
+
* The API version used to start a new TwiML session.
448
448
*/
449
449
apiVersion: string;
450
450
/**
451
-
* The SID of the application that handles SMS messages sent to the phone number
451
+
* The SID of the application that handles SMS messages sent to the phone number. If an `sms_application_sid` is present, we ignore all `sms_*_url` values and use those of the application.
452
452
*/
453
453
smsApplicationSid: string;
454
454
/**
455
-
* The SID of the application that handles calls to the phone number
455
+
* The SID of the application that handles calls to the phone number. If a `voice_application_sid` is present, we ignore all of the voice urls and use those set on the application. Setting a `voice_application_sid` will automatically delete your `trunk_sid` and vice versa.
456
456
*/
457
457
voiceApplicationSid: string;
458
458
/**
459
-
* The SID of the Trunk that handles calls to the phone number
459
+
* The SID of the Trunk that handles calls to the phone number. If a `trunk_sid` is present, we ignore all of the voice urls and voice applications and use those set on the Trunk. Setting a `trunk_sid` will automatically delete your `voice_application_sid` and vice versa.
0 commit comments