mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
50 lines
980 B
PHP
50 lines
980 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\DataMapper\Analytics;
|
|
|
|
use Turbo124\Beacon\ExampleMetric\GenericMixedMetric;
|
|
|
|
class BankAccountsCreated extends GenericMixedMetric
|
|
{
|
|
/**
|
|
* The type of Sample.
|
|
*
|
|
* Monotonically incrementing counter
|
|
*
|
|
* - counter
|
|
*
|
|
* @var string
|
|
*/
|
|
public $type = 'mixed_metric';
|
|
|
|
/**
|
|
* The name of the counter.
|
|
* @var string
|
|
*/
|
|
public $name = 'bank_accounts.created';
|
|
|
|
/**
|
|
* The datetime of the counter measurement.
|
|
*
|
|
* date("Y-m-d H:i:s")
|
|
*
|
|
*/
|
|
public $datetime;
|
|
|
|
public $int_metric1 = 0;
|
|
|
|
public function __construct($int_metric1)
|
|
{
|
|
$this->int_metric1 = $int_metric1;
|
|
}
|
|
}
|