• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

tylernathanreed / jira-client-php / 13634794100

03 Mar 2025 03:19PM UTC coverage: 2.067% (-0.1%) from 2.21%
13634794100

push

github

web-flow
~ Try coveralls action

140 of 6773 relevant lines covered (2.07%)

0.03 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/Schema/SimplifiedHierarchyLevel.php
1
<?php
2

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
final readonly class SimplifiedHierarchyLevel extends Dto
8
{
9
    public function __construct(
×
10
        /**
11
         * The ID of the level above this one in the hierarchy.
12
         * This property is deprecated, see "Change notice: Removing hierarchy level IDs from next-gen APIs".
13
         * 
14
         * @link https://developer.atlassian.com/cloud/jira/platform/change-notice-removing-hierarchy-level-ids-from-next-gen-apis/
15
         */
16
        public ?int $aboveLevelId = null,
17

18
        /**
19
         * The ID of the level below this one in the hierarchy.
20
         * This property is deprecated, see "Change notice: Removing hierarchy level IDs from next-gen APIs".
21
         * 
22
         * @link https://developer.atlassian.com/cloud/jira/platform/change-notice-removing-hierarchy-level-ids-from-next-gen-apis/
23
         */
24
        public ?int $belowLevelId = null,
25

26
        /**
27
         * The external UUID of the hierarchy level.
28
         * This property is deprecated, see "Change notice: Removing hierarchy level IDs from next-gen APIs".
29
         * 
30
         * @link https://developer.atlassian.com/cloud/jira/platform/change-notice-removing-hierarchy-level-ids-from-next-gen-apis/
31
         */
32
        public ?string $externalUuid = null,
33

34
        public ?int $hierarchyLevelNumber = null,
35

36
        /**
37
         * The ID of the hierarchy level.
38
         * This property is deprecated, see "Change notice: Removing hierarchy level IDs from next-gen APIs".
39
         * 
40
         * @link https://developer.atlassian.com/cloud/jira/platform/change-notice-removing-hierarchy-level-ids-from-next-gen-apis/
41
         */
42
        public ?int $id = null,
43

44
        /**
45
         * The issue types available in this hierarchy level.
46
         * 
47
         * @var ?list<int>
48
         */
49
        public ?array $issueTypeIds = null,
50

51
        /** The level of this item in the hierarchy. */
52
        public ?int $level = null,
53

54
        /** The name of this hierarchy level. */
55
        public ?string $name = null,
56

57
        /**
58
         * The ID of the project configuration.
59
         * This property is deprecated, see "Change oticen: Removing hierarchy level IDs from next-gen APIs".
60
         * 
61
         * @link https://developer.atlassian.com/cloud/jira/platform/change-notice-removing-hierarchy-level-ids-from-next-gen-apis/
62
         */
63
        public ?int $projectConfigurationId = null,
64
    ) {
65
    }
×
66
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc