• 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/ApplicationRole.php
1
<?php
2

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
/** Details of an application role. */
8
final readonly class ApplicationRole extends Dto
9
{
10
    public function __construct(
×
11
        /**
12
         * The groups that are granted default access for this application role.
13
         * As a group's name can change, use of `defaultGroupsDetails` is recommended to identify a groups.
14
         * 
15
         * @var ?list<string>
16
         */
17
        public ?array $defaultGroups = null,
18

19
        /**
20
         * The groups that are granted default access for this application role.
21
         * 
22
         * @var ?list<GroupName>
23
         */
24
        public ?array $defaultGroupsDetails = null,
25

26
        /** Deprecated. */
27
        public ?bool $defined = null,
28

29
        /**
30
         * The groups associated with the application role.
31
         * 
32
         * @var ?list<GroupName>
33
         */
34
        public ?array $groupDetails = null,
35

36
        /**
37
         * The groups associated with the application role.
38
         * As a group's name can change, use of `groupDetails` is recommended to identify a groups.
39
         * 
40
         * @var ?list<string>
41
         */
42
        public ?array $groups = null,
43

44
        public ?bool $hasUnlimitedSeats = null,
45

46
        /** The key of the application role. */
47
        public ?string $key = null,
48

49
        /** The display name of the application role. */
50
        public ?string $name = null,
51

52
        /** The maximum count of users on your license. */
53
        public ?int $numberOfSeats = null,
54

55
        /** Indicates if the application role belongs to Jira platform (`jira-core`). */
56
        public ?bool $platform = null,
57

58
        /** The count of users remaining on your license. */
59
        public ?int $remainingSeats = null,
60

61
        /** Determines whether this application role should be selected by default on user creation. */
62
        public ?bool $selectedByDefault = null,
63

64
        /** The number of users counting against your license. */
65
        public ?int $userCount = null,
66

67
        /**
68
         * The "type of users" being counted against your license.
69
         * 
70
         * @link https://confluence.atlassian.com/x/lRW3Ng
71
         */
72
        public ?string $userCountDescription = null,
73
    ) {
74
    }
×
75
}
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