Skip to content

Commit

Permalink
Merge pull request #67 from mundipagg/fix-item-id-return
Browse files Browse the repository at this point in the history
Fix item id from 'Id' to 'id'
  • Loading branch information
luisgrangeiro authored Apr 2, 2020
2 parents ab72737 + 83bd69b commit 99a4f92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Models/GetOrderItemResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class GetOrderItemResponse implements JsonSerializable
/**
* Id
* @required
* @maps Id
* @maps id
* @var string $id public property
*/
public $id;
Expand Down Expand Up @@ -94,7 +94,7 @@ public function __construct()
public function jsonSerialize()
{
$json = array();
$json['Id'] = $this->id;
$json['id'] = $this->id;
$json['amount'] = $this->amount;
$json['description'] = $this->description;
$json['quantity'] = $this->quantity;
Expand Down

0 comments on commit 99a4f92

Please sign in to comment.