mirror of
https://github.com/ivuorinen/business-data-fetcher.git
synced 2026-03-18 06:00:55 +00:00
feat: used parser output to recreate the DTOs
This commit is contained in:
@@ -14,34 +14,29 @@ class BisCompanyForm extends DataTransferObject
|
||||
|
||||
/**
|
||||
* One for current version and >1 for historical company forms
|
||||
*
|
||||
* @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;
|
||||
public ?string $endDate = null;
|
||||
|
||||
/**
|
||||
* Name of company form
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public string $name;
|
||||
public string $name = "";
|
||||
|
||||
/**
|
||||
* Two letter language code
|
||||
*
|
||||
* @var string|null
|
||||
*/
|
||||
public ?string $language;
|
||||
public ?string $language = null;
|
||||
|
||||
/**
|
||||
* Type of company form.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user