Beispiel #1
0
 public function removeUserCard($login, $cardId)
 {
     $this->configureEWalletWithUser($login);
     $res = PaytureEWalletCard::Remove(['CardId' => $cardId]);
     return $res->Success;
 }
 /**
  * This request is used to remove the selected card (activated or non-activated) from the user’s card list.
  *
  * @param array $data Payment parameters
  *
  * @return \stdClass
  */
 public static function CardRemove($data = array())
 {
     return PaytureEWalletCard::Remove($data);
 }