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

tylernathanreed / jira-client-php / 13857440588

14 Mar 2025 01:18PM UTC coverage: 70.825% (-0.06%) from 70.885%
13857440588

push

github

tylernathanreed
~ Fixed nested objects in test examples

9 of 9 new or added lines in 1 file covered. (100.0%)

524 existing lines in 407 files now uncovered.

4826 of 6814 relevant lines covered (70.82%)

8.59 hits per line

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

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

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
/** The user details. */
8
final readonly class NewUserDetails extends Dto
9
{
UNCOV
10
    public function __construct(
×
11
        /** The email address for the user. */
12
        public string $emailAddress,
13

14
        /**
15
         * Products the new user has access to.
16
         * Valid products are: jira-core, jira-servicedesk, jira-product-discovery, jira-software.
17
         * To create a user without product access, set this field to be an empty array.
18
         * 
19
         * @var list<string>
20
         */
21
        public array $products,
22

23
        /**
24
         * Deprecated, do not use.
25
         * 
26
         * @var ?list<string>
27
         */
28
        public ?array $applicationKeys = null,
29

30
        /**
31
         * This property is no longer available.
32
         * If the user has an Atlassian account, their display name is not changed.
33
         * If the user does not have an Atlassian account, they are sent an email asking them set up an account.
34
         */
35
        public ?string $displayName = null,
36

37
        /**
38
         * This property is no longer available.
39
         * See the "migration guide" for details.
40
         * 
41
         * @link https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/
42
         */
43
        public ?string $key = null,
44

45
        /**
46
         * This property is no longer available.
47
         * See the "migration guide" for details.
48
         * 
49
         * @link https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/
50
         */
51
        public ?string $name = null,
52

53
        /**
54
         * This property is no longer available.
55
         * If the user has an Atlassian account, their password is not changed.
56
         * If the user does not have an Atlassian account, they are sent an email asking them set up an account.
57
         */
58
        public ?string $password = null,
59

60
        /** The URL of the user. */
61
        public ?string $self = null,
62
    ) {
63
    }
×
64
}
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