123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- namespace HitPay\Request;
- class ChargeSavedCard
- {
-
- public $amount;
-
- public $currency;
-
- public function getAmount()
- {
- return $this->amount;
- }
-
- public function getCurrency()
- {
- return $this->currency;
- }
-
- public function setAmount($amount)
- {
- $this->amount = $amount;
- return $this;
- }
-
- public function setCurrency($currency)
- {
- $this->currency = $currency;
- return $this;
- }
- }
|