fix(models): BisCompanyForm type can be null

The original definitions didn't include optional, so adding it manually
This commit is contained in:
2024-08-22 22:44:01 +03:00
parent 2e08598832
commit e06f28ae2a
2 changed files with 2 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ BisCompanyForm {
endDate (string, optional): Ending date of registration
name (string): Name of company form
language (string, optional): Two letter language code
type (string): Type of company form
type (string, optional): Type of company form
}
BisCompanyLiquidation {

View File

@@ -32,5 +32,5 @@ class BisCompanyForm extends DataTransferObject
/**
* Type of company form
*/
public string $type = '';
public ?string $type = null;
}