mirror of
https://github.com/ivuorinen/business-data-fetcher.git
synced 2026-03-17 22:00:49 +00:00
feat: used parser output to recreate the DTOs
This commit is contained in:
@@ -18,38 +18,30 @@ class BisCompanyName extends DataTransferObject
|
||||
* Zero for primary company name,
|
||||
* other for translations of the primary company name
|
||||
* and auxiliary company names
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public int $order;
|
||||
/**
|
||||
* One for current version and >1 for historical company names
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public int $version;
|
||||
|
||||
/**
|
||||
* Date of registration
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public string $registrationDate = '';
|
||||
public string $registrationDate = "";
|
||||
|
||||
/**
|
||||
* Ending date of registration
|
||||
*
|
||||
* @var string|null
|
||||
*/
|
||||
public ?string $endDate = null;
|
||||
|
||||
/**
|
||||
* Company name
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public string $name;
|
||||
public string $name = "";
|
||||
|
||||
/**
|
||||
* Two letter language code
|
||||
*
|
||||
* @var string|null
|
||||
*/
|
||||
public ?string $language = null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user