1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-15 07:33:04 +01:00
invoiceninja/app/PaymentDrivers/CBAPowerBoard/Models/Charge.php

85 lines
2.2 KiB
PHP
Raw Normal View History

2024-09-08 11:06:31 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\PaymentDrivers\CBAPowerBoard\Models;
class Charge
{
2024-09-08 11:52:39 +02:00
/** @var ?string */
public ?string $external_id;
/** @var ?string */
public ?string $_id;
/** @var ?string */
public ?string $created_at;
/** @var ?string */
public ?string $updated_at;
/** @var ?string */
public ?string $remittance_date;
/** @var ?string */
public ?string $company_id;
/** @var float */
public float $amount;
/** @var ?string */
public ?string $currency;
/** @var ?int */
public ?int $__v;
/** @var Transaction[] */
2024-09-08 11:06:31 +02:00
public array $transactions;
2024-09-08 11:52:39 +02:00
/** @var ?bool */
public ?bool $one_off;
/** @var ?bool */
public ?bool $archived;
2024-09-08 11:06:31 +02:00
/** @var Customer */
public Customer $customer;
2024-09-08 11:52:39 +02:00
/** @var ?bool */
public ?bool $capture;
/** @var ?string */
public? string $status;
/** @var ?array */
public ?array $items;
2024-09-08 11:06:31 +02:00
public function __construct(
2024-09-08 11:52:39 +02:00
?string $external_id,
?string $_id,
?string $created_at,
?string $updated_at,
?string $remittance_date,
?string $company_id,
float $amount,
?string $currency,
?int $__v,
2024-09-08 11:06:31 +02:00
array $transactions,
2024-09-08 11:52:39 +02:00
?bool $one_off,
?bool $archived,
2024-09-08 11:06:31 +02:00
Customer $customer,
2024-09-08 11:52:39 +02:00
?bool $capture,
?string $status,
?array $items,
2024-09-08 11:06:31 +02:00
) {
$this->external_id = $external_id;
$this->_id = $_id;
$this->created_at = $created_at;
$this->updated_at = $updated_at;
$this->remittance_date = $remittance_date;
$this->company_id = $company_id;
$this->amount = $amount;
$this->currency = $currency;
$this->__v = $__v;
$this->transactions = $transactions;
$this->one_off = $one_off;
$this->archived = $archived;
$this->customer = $customer;
$this->capture = $capture;
$this->status = $status;
$this->items = $items;
}
}