Skip to content

Commit 66b1f2e

Browse files
Merge pull request #12 from INDA-HR/manuel-sdk-fix
feat(Customizations): add customized fields for Resume add
2 parents fa77a47 + 5eddb87 commit 66b1f2e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/Model/FileItemRequest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* @link https://openapi-generator.tech
4242
* @implements \ArrayAccess<string, mixed>
4343
*/
44-
class FileItemRequest implements ModelInterface, ArrayAccess, \JsonSerializable
44+
class FileItemRequest extends CustomizableModelAbstract implements ModelInterface, ArrayAccess, \JsonSerializable
4545
{
4646
public const DISCRIMINATOR = null;
4747

@@ -260,6 +260,7 @@ public function __construct(array $data = null)
260260
$this->setIfExists('data', $data ?? [], null);
261261
$this->setIfExists('metadata', $data ?? [], null);
262262
$this->setIfExists('attachments', $data ?? [], null);
263+
parent::__construct([]);
263264
}
264265

265266
/**

0 commit comments

Comments
 (0)