Skip to content

Commit

Permalink
Add missing BankAccount get methods
Browse files Browse the repository at this point in the history
  • Loading branch information
colinbird committed Mar 8, 2019
1 parent 46dd458 commit 504b117
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/Entities/BankAccount.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,14 @@ public function setCustomFields($value)
return $this->setAttribute('customFields', $value);
}

/**
* @return string
*/
public function getRoutingNumber()
{
return $this->getAttribute('routingNumber');
}

/**
* @param string $value
*
Expand All @@ -132,6 +140,14 @@ public function setRoutingNumber($value)
return $this->setAttribute('routingNumber', $value);
}

/**
* @return string
*/
public function getAccountNumber()
{
return $this->getAttribute('accountNumber');
}

/**
* @param string $value
*
Expand All @@ -142,6 +158,14 @@ public function setAccountNumber($value)
return $this->setAttribute('accountNumber', $value);
}

/**
* @return string
*/
public function getAccountType()
{
return $this->getAttribute('accountType');
}

/**
* @param string $value
*
Expand Down

0 comments on commit 504b117

Please sign in to comment.