mirror of
https://github.com/ivuorinen/business-data-fetcher.git
synced 2026-03-12 12:58:58 +00:00
updated docs, example, extensive use of Traits with better handling. valid level 9 phpstan codebase.
37 lines
673 B
PHP
37 lines
673 B
PHP
<?php
|
|
|
|
namespace Ivuorinen\BusinessDataFetcher\Dto;
|
|
|
|
use Spatie\DataTransferObject\DataTransferObject;
|
|
use Ivuorinen\BusinessDataFetcher\Traits;
|
|
|
|
/**
|
|
* Company Liquidation
|
|
*/
|
|
class BisCompanyLiquidation extends DataTransferObject
|
|
{
|
|
use Traits\HasSource;
|
|
use Traits\HasVersion;
|
|
use Traits\HasLanguage;
|
|
|
|
/**
|
|
* Date of registration
|
|
*/
|
|
public string $registrationDate = '';
|
|
|
|
/**
|
|
* Ending date of registration
|
|
*/
|
|
public ?string $endDate = null;
|
|
|
|
/**
|
|
* Bankruptcy, liquidation or restructuring proceedings
|
|
*/
|
|
public string $name = '';
|
|
|
|
/**
|
|
* Type of liquidation
|
|
*/
|
|
public string $type = '';
|
|
}
|