Skip to content

Commit 087c5a0

Browse files
authored
add additional fields to project (#26)
1 parent 8176fa0 commit 087c5a0

1 file changed

Lines changed: 36 additions & 0 deletions

File tree

src/Project/Project.php

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,14 @@ class Project implements \JsonSerializable
9595

9696
public int $categoryId;
9797

98+
public int $workflowScheme;
99+
100+
public int $issueTypeScreenScheme;
101+
102+
public int $issueTypeScheme;
103+
104+
public int $fieldConfigurationScheme;
105+
98106
#[\ReturnTypeWillChange]
99107
public function jsonSerialize()
100108
{
@@ -244,4 +252,32 @@ public function setAssigneeTypeAsEnum(AssigneeTypeEnum $assigneeType): static
244252

245253
return $this;
246254
}
255+
256+
public function setWorkflowScheme(int $workflowScheme): static
257+
{
258+
$this->workflowScheme = $workflowScheme;
259+
260+
return $this;
261+
}
262+
263+
public function setIssueTypeScreenScheme(int $issueTypeScreenScheme): static
264+
{
265+
$this->issueTypeScreenScheme = $issueTypeScreenScheme;
266+
267+
return $this;
268+
}
269+
270+
public function setIssueTypeScheme(int $issueTypeScheme): static
271+
{
272+
$this->issueTypeScheme = $issueTypeScheme;
273+
274+
return $this;
275+
}
276+
277+
public function setFieldConfigurationScheme(int $fieldConfigurationScheme): static
278+
{
279+
$this->fieldConfigurationScheme = $fieldConfigurationScheme;
280+
281+
return $this;
282+
}
247283
}

0 commit comments

Comments
 (0)