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

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
final readonly class UserBean extends Dto
8
{
9
    public function __construct(
×
10
        /**
11
         * The account ID of the user, which uniquely identifies the user across all Atlassian products.
12
         * For example, *5b10ac8d82e05b22cc7d4ef5*.
13
         */
14
        public ?string $accountId = null,
15

16
        /** Whether the user is active. */
17
        public ?bool $active = null,
18

19
        /** The avatars of the user. */
20
        public ?UserBeanAvatarUrls $avatarUrls = null,
21

22
        /**
23
         * The display name of the user.
24
         * Depending on the user’s privacy setting, this may return an alternative value.
25
         */
26
        public ?string $displayName = null,
27

28
        /**
29
         * This property is deprecated in favor of `accountId` because of privacy changes.
30
         * See the "migration guide" for details.
31
         *  
32
         * The key of the user.
33
         * 
34
         * @link https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/
35
         */
36
        public ?string $key = null,
37

38
        /**
39
         * This property is deprecated in favor of `accountId` because of privacy changes.
40
         * See the "migration guide" for details.
41
         *  
42
         * The username of the user.
43
         * 
44
         * @link https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/
45
         */
46
        public ?string $name = null,
47

48
        /** The URL of the user. */
49
        public ?string $self = null,
50
    ) {
51
    }
×
52
}
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