Skip to content

Commit

Permalink
Merge pull request #179 from plivo/add_missing_fields
Browse files Browse the repository at this point in the history
add missing fields
  • Loading branch information
nixonsam authored Jul 21, 2020
2 parents a13abfa + 10dc3af commit 437ef4c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## [v4.9.1](https://github.com/plivo/plivo-php/releases/tag/v4.9.1) - 2020-07-21
- Fix Get Call Details API response.

## [v4.9.0](https://github.com/plivo/plivo-php/releases/tag/v4.9.0) - 2020-05-28
- Add JWT helper functions.

Expand Down
2 changes: 2 additions & 0 deletions src/Plivo/Resources/Call/Call.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ function __construct(
'billedDuration' => $response['billed_duration'],
'callDirection' => $response['call_direction'],
'callDuration' => $response['call_duration'],
'callState' => $response['call_state'],
'callUuid' => $response['call_uuid'],
'conferenceUuid' => $response['conference_uuid'],
'endTime' => $response['end_time'],
'from' => $response['from_number'],
'initiationTime' => $response['initiation_time'],
Expand Down
2 changes: 1 addition & 1 deletion src/Plivo/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Version
/**
* @const int PHP helper library patch number
*/
const PATCH = 0;
const PATCH = 1;
/**
* @return string
*/
Expand Down

0 comments on commit 437ef4c

Please sign in to comment.