Skip to content
This repository was archived by the owner on Oct 24, 2023. It is now read-only.

Commit 4ee7f07

Browse files
author
Barbara Palumbo
committed
feat(ApiClientDraft): add deleteDaysAfterCreation in fieldDefinitions
1 parent ec6fe5f commit 4ee7f07

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Core/Model/ApiClient/ApiClientDraft.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,17 @@
1414
* @method ApiClientDraft setName(string $name = null)
1515
* @method string getScope()
1616
* @method ApiClientDraft setScope(string $scope = null)
17+
* @method int getDeleteDaysAfterCreation()
18+
* @method ApiClientDraft setDeleteDaysAfterCreation(int $deleteDaysAfterCreation = null)
1719
*/
1820
class ApiClientDraft extends JsonObject
1921
{
2022
public function fieldDefinitions()
2123
{
2224
return [
2325
'name' => [static::TYPE => 'string'],
24-
'scope' => [static::TYPE => 'string']
26+
'scope' => [static::TYPE => 'string'],
27+
'deleteDaysAfterCreation' => [static::TYPE => 'int'],
2528
];
2629
}
2730

0 commit comments

Comments
 (0)