tipo: modificación del cpanel y gitignore de la carpeta vendor

This commit is contained in:
2026-07-07 11:35:09 -06:00
parent a0c91dc567
commit 676ef0d506
8510 changed files with 1132803 additions and 4 deletions
+39
View File
@@ -0,0 +1,39 @@
<?php
/**
* Openpay API v1 Client for PHP (version 2.2.*)
*
* Copyright © Openpay SAPI de C.V. All rights reserved.
* http://www.openpay.mx/
* soporte@openpay.mx
*/
namespace Openpay\Resources;
use Openpay\Data\OpenpayApiResourceBase;
use Openpay\Data\OpenpayApiDerivedResource;
class OpenpayCard extends OpenpayApiResourceBase
{
protected $type;
protected $brand;
protected $allows_charges;
protected $allows_payouts;
protected $creation_date;
protected $bank_name;
protected $bank_code;
protected $customer_id;
public function delete() {
$this->_delete();
}
public function get($param) {
return $this->_getAttributes($param);
}
}
// ----------------------------------------------------------------------------
?>