1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/DataMapper/PaymentMethodMeta.php

26 lines
428 B
PHP
Raw Normal View History

2019-09-18 04:39:53 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2019-09-18 04:39:53 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
2019-09-18 04:39:53 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\DataMapper;
class PaymentMethodMeta
{
public $exp_month;
2019-09-18 04:39:53 +02:00
public $exp_year;
2019-09-18 04:39:53 +02:00
public $brand;
2019-09-18 04:39:53 +02:00
public $last4;
2019-09-18 04:39:53 +02:00
public $type;
}