mirror of
https://github.com/Karaka-Management/oms-Billing.git
synced 2026-02-18 09:18:40 +00:00
Force public member variables or mapper changes
This commit is contained in:
parent
12bb6291ec
commit
054d58060a
|
|
@ -414,7 +414,7 @@ class Bill implements \JsonSerializable
|
||||||
* @var array
|
* @var array
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private array $vouchers = [];
|
public array $vouchers = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tracking ids for shipping.
|
* Tracking ids for shipping.
|
||||||
|
|
@ -422,7 +422,7 @@ class Bill implements \JsonSerializable
|
||||||
* @var array
|
* @var array
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private array $trackings = [];
|
public array $trackings = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Bill elements / bill lines.
|
* Bill elements / bill lines.
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@ class BillElement implements \JsonSerializable
|
||||||
|
|
||||||
public string $itemDescription = '';
|
public string $itemDescription = '';
|
||||||
|
|
||||||
protected int $quantity = 0;
|
public int $quantity = 0;
|
||||||
|
|
||||||
public ?Subscription $subscription = null;
|
public ?Subscription $subscription = null;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -57,7 +57,7 @@ class BillType implements \JsonSerializable
|
||||||
*
|
*
|
||||||
* @var string|BaseStringL11n
|
* @var string|BaseStringL11n
|
||||||
*/
|
*/
|
||||||
protected string | BaseStringL11n $l11n;
|
public string | BaseStringL11n $l11n;
|
||||||
|
|
||||||
public bool $isTemplate = false;
|
public bool $isTemplate = false;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user