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

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
/** Details of a custom field. */
8
final readonly class UpdateCustomFieldDetails extends Dto
9
{
10
    public function __construct(
×
11
        /**
12
         * The description of the custom field.
13
         * The maximum length is 40000 characters.
14
         */
15
        public ?string $description = null,
16

17
        /**
18
         * The name of the custom field.
19
         * It doesn't have to be unique.
20
         * The maximum length is 255 characters.
21
         */
22
        public ?string $name = null,
23

24
        /**
25
         * The searcher that defines the way the field is searched in Jira.
26
         * It can be set to `null`, otherwise you must specify the valid searcher for the field type, as listed below (abbreviated values shown):
27
         * 
28
         *  - `cascadingselect`: `cascadingselectsearcher`
29
         *  - `datepicker`: `daterange`
30
         *  - `datetime`: `datetimerange`
31
         *  - `float`: `exactnumber` or `numberrange`
32
         *  - `grouppicker`: `grouppickersearcher`
33
         *  - `importid`: `exactnumber` or `numberrange`
34
         *  - `labels`: `labelsearcher`
35
         *  - `multicheckboxes`: `multiselectsearcher`
36
         *  - `multigrouppicker`: `multiselectsearcher`
37
         *  - `multiselect`: `multiselectsearcher`
38
         *  - `multiuserpicker`: `userpickergroupsearcher`
39
         *  - `multiversion`: `versionsearcher`
40
         *  - `project`: `projectsearcher`
41
         *  - `radiobuttons`: `multiselectsearcher`
42
         *  - `readonlyfield`: `textsearcher`
43
         *  - `select`: `multiselectsearcher`
44
         *  - `textarea`: `textsearcher`
45
         *  - `textfield`: `textsearcher`
46
         *  - `url`: `exacttextsearcher`
47
         *  - `userpicker`: `userpickergroupsearcher`
48
         *  - `version`: `versionsearcher`
49
         * 
50
         * @var 'com.atlassian.jira.plugin.system.customfieldtypes:cascadingselectsearcher'|'com.atlassian.jira.plugin.system.customfieldtypes:daterange'|'com.atlassian.jira.plugin.system.customfieldtypes:datetimerange'|'com.atlassian.jira.plugin.system.customfieldtypes:exactnumber'|'com.atlassian.jira.plugin.system.customfieldtypes:exacttextsearcher'|'com.atlassian.jira.plugin.system.customfieldtypes:grouppickersearcher'|'com.atlassian.jira.plugin.system.customfieldtypes:labelsearcher'|'com.atlassian.jira.plugin.system.customfieldtypes:multiselectsearcher'|'com.atlassian.jira.plugin.system.customfieldtypes:numberrange'|'com.atlassian.jira.plugin.system.customfieldtypes:projectsearcher'|'com.atlassian.jira.plugin.system.customfieldtypes:textsearcher'|'com.atlassian.jira.plugin.system.customfieldtypes:userpickergroupsearcher'|'com.atlassian.jira.plugin.system.customfieldtypes:versionsearcher'|null
51
         */
52
        public ?string $searcherKey = null,
53
    ) {
54
    }
×
55
}
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