for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace JiraRestApi\Issue;
class VersionIssueCounts implements \JsonSerializable
{
/** @var string */
public $self;
/** @var int */
public $issuesFixedCount;
public $issuesAffectedCount;
public $issueCountWithCustomFieldsShowingVersion;
/** @var \JiraRestApi\Issue\CustomFieldUsage[] */
public $customFieldUsage;
public function __construct()
}
public function jsonSerialize()
return array_filter(get_object_vars($this));
public function setSelf($self)
$this->self = $self;
return $this;
public function setIssuesFixedCount($issuesFixedCount)
$this->issuesFixedCount = $issuesFixedCount;
public function setIssuesAffectedCount($issuesAffectedCount)
$this->issuesAffectedCount = $issuesAffectedCount;
public function setIssueCountWithCustomFieldsShowingVersion($issueCountWithCustomFieldsShowingVersion)
$this->issueCountWithCustomFieldsShowingVersion = $issueCountWithCustomFieldsShowingVersion;
public function setCustomFieldUsage($customFieldUsage)
$this->customFieldUsage = $customFieldUsage;