queued
– Call is ready and waiting in line before going out. *ringing
– Call is currently ringing. *inProgress
– Call was answered and is currently in progress. *canceled
– Call was hung up while it was queued or ringing. *completed
– Call was answered and has ended normally. *busy
– Caller received a busy signal. *failed
– Call could not be completed as dialed, most likely because the phone number was non-existent. *noAnswer
– Call ended without being answered.
Name | Value | Notes |
---|---|---|
QUEUED | queued | Represented in C# as 1 |
RINGING | ringing | Represented in C# as 2 |
IN_PROGRESS | inProgress | Represented in C# as 3 |
CANCELED | canceled | Represented in C# as 4 |
COMPLETED | completed | Represented in C# as 5 |
FAILED | failed | Represented in C# as 6 |
BUSY | busy | Represented in C# as 7 |
NO_ANSWER | noAnswer | Represented in C# as 8 |