!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/main_file/vendor/mercadopago/dx-php/src/MercadoPago/Entities/   drwxrwxr-x
Free 13.22 GB of 57.97 GB (22.8%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Card.php (2.33 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace MercadoPago;

use 
MercadoPago\Annotation\RestMethod;
use 
MercadoPago\Annotation\RequestParam;
use 
MercadoPago\Annotation\Attribute;

/**
 * The cards class is the way to store card data of your customers safely to improve the shopping experience.
 *
 * This will allow your customers to complete their purchases much faster and easily, since they will not have to complete their card data again.
 *  
 * This class must be used in conjunction with the Customer class.
 *
 * @link https://www.mercadopago.com/developers/en/guides/online-payments/web-tokenize-checkout/customers-and-cards Click here for more infos
 * 
 * @RestMethod(resource="/v1/customers/:customer_id/cards", method="create")
 * @RestMethod(resource="/v1/customers/:customer_id/cards/:id", method="read")
 * @RestMethod(resource="/v1/customers/:customer_id/cards/:id", method="update")
 * @RestMethod(resource="/v1/customers/:customer_id/cards/:id", method="delete")
 */

class Card extends Entity
{
    
/**
     * id
     * @Attribute(primaryKey = true)
     * @var int
     */
    
protected $id;

    
/**
     * token
     * @Attribute()
     * @var string
     */
    
protected $token;

    
/**
     * customer_id
     * @Attribute(required = true, serialize = false)
     * @var string
     */
    
protected $customer_id;

    
/**
     * expiration_month
     * @Attribute()
     * @var int
     */
    
protected $expiration_month;

    
/**
     * expiration_year
     * @Attribute()
     * @var int
     */
    
protected $expiration_year;

    
/**
     * first_six_digits
     * @Attribute()
     * @var string
     */
    
protected $first_six_digits;

    
/**
     * last_four_digits
     * @Attribute()
     * @var string
     */
    
protected $last_four_digits;

    
/**
     * payment_method
     * @Attribute()
     * @var object
     */
    
protected $payment_method;

    
/**
     * security_code
     * @Attribute()
     * @var object
     */
    
protected $security_code;

    
/**
     * issuer
     * @Attribute()
     * @var object
     */
    
protected $issuer;

    
/**
     * cardholder
     * @Attribute()
     * @var object
     */
    
protected $cardholder;

    
/**
     * date_created
     * @Attribute()
     * @var string
     */
    
protected $date_created;

    
/**
     * date_last_updated
     * @Attribute()
     * @var string
     */
    
protected $date_last_updated;


}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0049 ]--