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

31 lines
540 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) 2021. 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
{
2020-10-26 14:40:50 +01:00
/** @var string */
public $exp_month;
2019-09-18 04:39:53 +02:00
2020-10-26 14:40:50 +01:00
/** @var string */
public $exp_year;
2019-09-18 04:39:53 +02:00
2020-10-26 14:40:50 +01:00
/** @var string */
public $brand;
2019-09-18 04:39:53 +02:00
2020-10-26 14:40:50 +01:00
/** @var string */
public $last4;
2019-09-18 04:39:53 +02:00
2020-10-26 14:40:50 +01:00
/** @var int */
public $type;
}