We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 331ec32 + b288f2d commit 82774c8Copy full SHA for 82774c8
src/Project/Project.php
@@ -68,6 +68,13 @@ class Project implements \JsonSerializable
68
*/
69
public $lead;
70
71
+ /**
72
+ * The account ID of the project lead.
73
+ *
74
+ * @var string
75
+ */
76
+ public $leadAccountId;
77
+
78
/**
79
* ComponentList [\JiraRestApi\Project\Component].
80
*
@@ -206,6 +213,18 @@ public function setLead($lead)
206
213
return $this;
207
214
}
208
215
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
209
228
210
229
* @param string $url
211
230
0 commit comments