This commit is contained in:
2025-03-09 23:50:32 +01:00
parent 1e498b41c7
commit 67c05416ac
190 changed files with 8061 additions and 3363 deletions

View File

@@ -0,0 +1,44 @@
<?php
class Application {
/**
* Agreement date
*/
public $AgreementDate;
/**
* Credit Agreement number
*/
public $AgreementNumber;
/**
* Credit application number
*/
public $ApplicationNumber;
/**
* Application state change date
*/
public $ChangeDate;
/**
* Application state
*/
public $CreditState;
/**
* Downpayment(reduces total price in credit application)
*/
public $Downpayment;
/**
* This is order number. In PrestaShop - order reference (in previous module versions it was order id)
*/
public $ShopApplicationNumber;
/**
* Shop number (in the Bank database)
*/
public $ShopNumber;
/**
* Total Price paid for the order
*/
public $TotalPrice;
public $check_date;
}