Skip to content

Commit

Permalink
DTPAYETWO-761- modified comments for prop "isDefaultTransferMethod" f…
Browse files Browse the repository at this point in the history
…rom string to bool
  • Loading branch information
akswaminathan-pp-dev committed Dec 14, 2022
1 parent 1827524 commit 7cba356
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
6 changes: 3 additions & 3 deletions src/Hyperwallet/Model/BankAccount.php
Expand Up @@ -63,7 +63,7 @@
* @property string $stateProvince The state or province
* @property string $country The country
* @property string $postalCode The postal code
* @property string $isDefaultTransferMethod The flag to denote default account
* @property bool $isDefaultTransferMethod The flag to denote default account
*
* @package Hyperwallet\Model
*/
Expand Down Expand Up @@ -1023,7 +1023,7 @@ public function setPostalCode($postalCode) {
/**
* Get the is default transfer method
*
* @return string
* @return bool
*/
public function getIsDefaultTransferMethod() {
return $this->isDefaultTransferMethod;
Expand All @@ -1032,7 +1032,7 @@ public function getIsDefaultTransferMethod() {
/**
* Set the is default transfer method
*
* @param string $isDefaultTransferMethod
* @param bool $isDefaultTransferMethod
* @return BankAccount
*/
public function setIsDefaultTransferMethod($isDefaultTransferMethod) {
Expand Down
6 changes: 3 additions & 3 deletions src/Hyperwallet/Model/BankCard.php
Expand Up @@ -20,7 +20,7 @@
* @property string $cvv The bank card cvv
* @property \DateTime $dateOfExpiry The bank card expiry date
* @property string $processingTime The processing time
* @property string $isDefaultTransferMethod The flag to denote default account
* @property bool $isDefaultTransferMethod The flag to denote default account
*
* @package Hyperwallet\Model
*/
Expand Down Expand Up @@ -262,7 +262,7 @@ public function setProcessingTime($processingTime) {
/**
* Get the is default transfer method
*
* @return string
* @return bool
*/
public function getIsDefaultTransferMethod() {
return $this->isDefaultTransferMethod;
Expand All @@ -271,7 +271,7 @@ public function getIsDefaultTransferMethod() {
/**
* Set the is default transfer method
*
* @param string $isDefaultTransferMethod
* @param bool $isDefaultTransferMethod
* @return BankCard
*/
public function setIsDefaultTransferMethod($isDefaultTransferMethod) {
Expand Down
6 changes: 3 additions & 3 deletions src/Hyperwallet/Model/PaperCheck.php
Expand Up @@ -30,7 +30,7 @@
* @property string $gender The gender
* @property string $governmentId The government id
* @property string $governmentIdType The government id type
* @property string $isDefaultTransferMethod The flag to denote default account
* @property bool $isDefaultTransferMethod The flag to denote default account
* @property string $lastName The last name
* @property string $middleName The middle name
* @property string $mobileNumber The mobile number
Expand Down Expand Up @@ -420,7 +420,7 @@ public function getGovernmentIdType() {
/**
* Get the is default transfer method
*
* @return string
* @return bool
*/
public function getIsDefaultTransferMethod() {
return $this->isDefaultTransferMethod;
Expand All @@ -429,7 +429,7 @@ public function getIsDefaultTransferMethod() {
/**
* Set the is default transfer method
*
* @param string $isDefaultTransferMethod
* @param bool $isDefaultTransferMethod
* @return PaperCheck
*/
public function setIsDefaultTransferMethod($isDefaultTransferMethod) {
Expand Down
6 changes: 3 additions & 3 deletions src/Hyperwallet/Model/PayPalAccount.php
Expand Up @@ -10,7 +10,7 @@
* @property string $type The transfer method type
* @property string $transferMethodCountry The transfer method country
* @property string $transferMethodCurrency The transfer method currency
* @property string $isDefaultTransferMethod The flag to denote default account
* @property bool $isDefaultTransferMethod The flag to denote default account
* @property string $email The PayPal account email
*
Expand Down Expand Up @@ -142,7 +142,7 @@ public function setTransferMethodCurrency($transferMethodCurrency) {
/**
* Get the is default transfer method
*
* @return string
* @return bool
*/
public function getIsDefaultTransferMethod() {
return $this->isDefaultTransferMethod;
Expand All @@ -151,7 +151,7 @@ public function getIsDefaultTransferMethod() {
/**
* Set the is default transfer method
*
* @param string $isDefaultTransferMethod
* @param bool $isDefaultTransferMethod
* @return PayPalAccount
*/
public function setIsDefaultTransferMethod($isDefaultTransferMethod) {
Expand Down
6 changes: 3 additions & 3 deletions src/Hyperwallet/Model/PrepaidCard.php
Expand Up @@ -19,7 +19,7 @@
* @property string $cardNumber The prepaid card number
* @property string $cardBrand The prepaid card brand
* @property \DateTime $dateOfExpiry The prepaid card expiry date
* @property string $isDefaultTransferMethod The flag to denote default account
* @property bool $isDefaultTransferMethod The flag to denote default account
*
* @package Hyperwallet\Model
*/
Expand Down Expand Up @@ -201,7 +201,7 @@ public function getDateOfExpiry() {
/**
* Get the is default transfer method
*
* @return string
* @return bool
*/
public function getIsDefaultTransferMethod() {
return $this->isDefaultTransferMethod;
Expand All @@ -210,7 +210,7 @@ public function getIsDefaultTransferMethod() {
/**
* Set the is default transfer method
*
* @param string $isDefaultTransferMethod
* @param bool $isDefaultTransferMethod
* @return PrepaidCard
*/
public function setIsDefaultTransferMethod($isDefaultTransferMethod) {
Expand Down
6 changes: 3 additions & 3 deletions src/Hyperwallet/Model/TransferMethod.php
Expand Up @@ -74,7 +74,7 @@
* @property string $stateProvince The state or province
* @property string $country The country
* @property string $postalCode The postal code
* @property string $isDefaultTransferMethod The flag to denote default account
* @property bool $isDefaultTransferMethod The flag to denote default account
*
* @package Hyperwallet\Model
*/
Expand Down Expand Up @@ -1125,7 +1125,7 @@ public function setPostalCode($postalCode) {
/**
* Get the is default transfer method
*
* @return string
* @return bool
*/
public function getIsDefaultTransferMethod() {
return $this->isDefaultTransferMethod;
Expand All @@ -1134,7 +1134,7 @@ public function getIsDefaultTransferMethod() {
/**
* Set the is default transfer method
*
* @param string $isDefaultTransferMethod
* @param bool $isDefaultTransferMethod
* @return TransferMethod
*/
public function setIsDefaultTransferMethod($isDefaultTransferMethod) {
Expand Down
6 changes: 3 additions & 3 deletions src/Hyperwallet/Model/VenmoAccount.php
Expand Up @@ -11,7 +11,7 @@
* @property string $type The transfer method type
* @property string $transferMethodCountry The transfer method country
* @property string $transferMethodCurrency The transfer method currency
* @property string $isDefaultTransferMethod The flag to denote default account
* @property bool $isDefaultTransferMethod The flag to denote default account
* @property string $accountId The Venmo account
*
* @package Hyperwallet\Model
Expand Down Expand Up @@ -140,7 +140,7 @@ public function setTransferMethodCurrency($transferMethodCurrency) {
/**
* Get the is default transfer method
*
* @return string
* @return bool
*/
public function getIsDefaultTransferMethod() {
return $this->isDefaultTransferMethod;
Expand All @@ -149,7 +149,7 @@ public function getIsDefaultTransferMethod() {
/**
* Set the is default transfer method
*
* @param string $isDefaultTransferMethod
* @param bool $isDefaultTransferMethod
* @return VenmoAccount
*/
public function setIsDefaultTransferMethod($isDefaultTransferMethod) {
Expand Down

0 comments on commit 7cba356

Please sign in to comment.