Skip to content

Commit

Permalink
add description to PullPayment Result type
Browse files Browse the repository at this point in the history
  • Loading branch information
petzsch committed Jun 24, 2024
1 parent a88ad30 commit 7d87d0d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Result/PullPayment.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ public function getName(): string
return $data['name'];
}

public function getDescription(): string
{
$data = $this->getData();
return $data['description'];
}

public function getCurrency(): string
{
$data = $this->getData();
Expand Down

0 comments on commit 7d87d0d

Please sign in to comment.