mirror of
https://github.com/ivuorinen/business-data-fetcher.git
synced 2026-02-17 22:49:45 +00:00
fix(models): BisCompanyForm type can be null
The original definitions didn't include optional, so adding it manually
This commit is contained in:
@@ -48,7 +48,7 @@ BisCompanyForm {
|
|||||||
endDate (string, optional): Ending date of registration
|
endDate (string, optional): Ending date of registration
|
||||||
name (string): Name of company form
|
name (string): Name of company form
|
||||||
language (string, optional): Two letter language code
|
language (string, optional): Two letter language code
|
||||||
type (string): Type of company form
|
type (string, optional): Type of company form
|
||||||
}
|
}
|
||||||
|
|
||||||
BisCompanyLiquidation {
|
BisCompanyLiquidation {
|
||||||
|
|||||||
@@ -32,5 +32,5 @@ class BisCompanyForm extends DataTransferObject
|
|||||||
/**
|
/**
|
||||||
* Type of company form
|
* Type of company form
|
||||||
*/
|
*/
|
||||||
public string $type = '';
|
public ?string $type = null;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user