Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 1.17 KB

CallStatus.md

File metadata and controls

18 lines (14 loc) · 1.17 KB

freeclimb.Enums.CallStatus

  • 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.

Properties

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

[Back to Model list] [Back to API list] [Back to README]