Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/Models/GetBalanceResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,22 @@ class GetBalanceResponse implements JsonSerializable
*/
public $availableAmount;

/**
* Indicates the balance receivable
* @required
* @maps waiting_funds_amount
* @var integer $waitingFundsAmount public property
*/
public $waitingFundsAmount;

/**
* Indicates the balance transferred to the bank account
* @required
* @maps available_amount
* @var integer $transferredAmount public property
*/
public $transferredAmount;

/**
* Recipient
* @var \MundiAPILib\Models\GetRecipientResponse|null $recipient public property
Expand Down Expand Up @@ -59,6 +75,8 @@ public function jsonSerialize()
$json = array();
$json['currency'] = $this->currency;
$json['available_amount'] = $this->availableAmount;
$json['waiting_funds_amount'] = $this->waitingFundsAmount;
$json['transferred_amount'] = $this->transferredAmount;
$json['recipient'] = $this->recipient;

return $json;
Expand Down