tipo: modificación del cpanel y gitignore de la carpeta vendor
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user