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

tylernathanreed / jira-client-php / 13634221961

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

push

github

web-flow
~ Try coveralls action

140 of 6773 relevant lines covered (2.07%)

0.06 hits per line

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

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

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
/** Details of a field that can be used in advanced searches. */
8
final readonly class FieldReferenceData extends Dto
9
{
10
    public function __construct(
×
11
        /**
12
         * Whether the field provide auto-complete suggestions.
13
         * 
14
         * @var 'true'|'false'|null
15
         */
16
        public ?string $auto = null,
17

18
        /** If the item is a custom field, the ID of the custom field. */
19
        public ?string $cfid = null,
20

21
        /**
22
         * Whether this field has been deprecated.
23
         * 
24
         * @var 'true'|'false'|null
25
         */
26
        public ?string $deprecated = null,
27

28
        /** The searcher key of the field, only passed when the field is deprecated. */
29
        public ?string $deprecatedSearcherKey = null,
30

31
        /**
32
         * The display name contains the following:
33
         * 
34
         *  - for system fields, the field name.
35
         * For example, `Summary`
36
         *  - for collapsed custom fields, the field name followed by a hyphen and then the field name and field type.
37
         * For example, `Component - Component[Dropdown]`
38
         *  - for other custom fields, the field name followed by a hyphen and then the custom field ID.
39
         * For example, `Component - cf[10061]`.
40
         */
41
        public ?string $displayName = null,
42

43
        /**
44
         * The valid search operators for the field.
45
         * 
46
         * @var ?list<string>
47
         */
48
        public ?array $operators = null,
49

50
        /**
51
         * Whether the field can be used in a query's `ORDER BY` clause.
52
         * 
53
         * @var 'true'|'false'|null
54
         */
55
        public ?string $orderable = null,
56

57
        /**
58
         * Whether the content of this field can be searched.
59
         * 
60
         * @var 'true'|'false'|null
61
         */
62
        public ?string $searchable = null,
63

64
        /**
65
         * The data types of items in the field.
66
         * 
67
         * @var ?list<string>
68
         */
69
        public ?array $types = null,
70

71
        /** The field identifier. */
72
        public ?string $value = 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