简体   繁体   中英

Is there any difference between a plain old TwiML `Dial` verb and a single `Number` nested in a `Dial`?

Other than one being slightly more verbose than the other, functionally is there any difference between these two TwiML blocks, assuming there is no additional configuration? I was unable to find anything in the docs.

<?xml version="1.0" encoding="UTF-8"?>
<Response>
  <Dial>111-111-1111</Dial>
</Response>
<?xml version="1.0" encoding="UTF-8"?>
<Response>
  <Dial>
    <Number>111-111-1111</Number>
  </Dial>
</Response>

You are right, both TwiML files are equivalent.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM