Skip to content
Merged
Show file tree
Hide file tree
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
150 changes: 75 additions & 75 deletions src/Hyperwallet/Hyperwallet.php

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/Hyperwallet/Model/AuthenticationToken.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
namespace Hyperwallet\Model;

/**
* Represents a V3 Authentication Token
* Represents a V4 Authentication Token
*
* @property string $value The client token value

Expand Down Expand Up @@ -39,4 +39,4 @@ public function getValue() {
return $this->value;
}

}
}
4 changes: 2 additions & 2 deletions src/Hyperwallet/Model/Balance.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
namespace Hyperwallet\Model;

/**
* Represents a V3 Balance
* Represents a V4 Balance
*
* @property string $currency The currency
* @property string $amount The amount
Expand All @@ -13,7 +13,7 @@ class Balance extends BaseModel {

/**
* @internal
*
*
* Read only fields
*
* @var string[]
Expand Down
2 changes: 1 addition & 1 deletion src/Hyperwallet/Model/BankAccount.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
namespace Hyperwallet\Model;

/**
* Represents a V3 Bank Account
* Represents a V4 Bank Account
*
* @property string $token The bank account token
* @property string $type The transfer method type
Expand Down
4 changes: 2 additions & 2 deletions src/Hyperwallet/Model/BankAccountStatusTransition.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
namespace Hyperwallet\Model;

/**
* Represents a V3 Bank Account Status Transition
* Represents a V4 Bank Account Status Transition
*
* @package Hyperwallet\Model
*/
Expand All @@ -19,4 +19,4 @@ public function __construct(array $properties = array()) {
parent::__construct($properties);
}

}
}
4 changes: 2 additions & 2 deletions src/Hyperwallet/Model/BankCard.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
namespace Hyperwallet\Model;

/**
* Represents a V3 Bank Card
* Represents a V4 Bank Card
*
* @property string $token The bank card token
* @property string $type The transfer method type
Expand Down Expand Up @@ -233,4 +233,4 @@ public function setDateOfExpiry(\DateTime $dateOfExpiry = null) {
return $this;
}

}
}
4 changes: 2 additions & 2 deletions src/Hyperwallet/Model/BankCardStatusTransition.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
namespace Hyperwallet\Model;

/**
* Represents a V3 Bank Card Status Transition
* Represents a V4 Bank Card Status Transition
*
* @package Hyperwallet\Model
*/
Expand All @@ -18,4 +18,4 @@ public function __construct(array $properties = array()) {
parent::__construct($properties);
}

}
}
4 changes: 2 additions & 2 deletions src/Hyperwallet/Model/Error.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
namespace Hyperwallet\Model;

/**
* Represents a V3 Error
* Represents a V4 Error
*
* @package Hyperwallet\Model
*/
Expand Down Expand Up @@ -89,4 +89,4 @@ public function getCode() {
public function getRelatedResources() {
return $this->relatedResources;
}
}
}
Loading