Skip to content

Commit 82774c8

Browse files
authored
Merge pull request #338 from doitonlinemedia/master
Support leadAccountId parameter
2 parents 331ec32 + b288f2d commit 82774c8

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

src/Project/Project.php

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,13 @@ class Project implements \JsonSerializable
6868
*/
6969
public $lead;
7070

71+
/**
72+
* The account ID of the project lead.
73+
*
74+
* @var string
75+
*/
76+
public $leadAccountId;
77+
7178
/**
7279
* ComponentList [\JiraRestApi\Project\Component].
7380
*
@@ -206,6 +213,18 @@ public function setLead($lead)
206213
return $this;
207214
}
208215

216+
/**
217+
* @param string $lead
218+
*
219+
* @return Project
220+
*/
221+
public function setLeadAccountId($leadAccountId)
222+
{
223+
$this->leadAccountId = $leadAccountId;
224+
225+
return $this;
226+
}
227+
209228
/**
210229
* @param string $url
211230
*

0 commit comments

Comments
 (0)