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

tylernathanreed / jira-client-php / 13858398789

14 Mar 2025 02:10PM UTC coverage: 75.271% (+3.5%) from 71.781%
13858398789

push

github

tylernathanreed
~ Fixed deserializer errors

5132 of 6818 relevant lines covered (75.27%)

9.24 hits per line

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

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

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
/** The metadata describing an issue field. */
8
final readonly class FieldMetadata extends Dto
9
{
10
    public function __construct(
×
11
        /** The key of the field. */
12
        public string $key,
13

14
        /** The name of the field. */
15
        public string $name,
16

17
        /**
18
         * The list of operations that can be performed on the field.
19
         * 
20
         * @var list<string>
21
         */
22
        public array $operations,
23

24
        /** Whether the field is required. */
25
        public bool $required,
26

27
        /** The data type of the field. */
28
        public JsonTypeBean $schema,
29

30
        /**
31
         * The list of values allowed in the field.
32
         * 
33
         * @var ?list<mixed>
34
         */
35
        public ?array $allowedValues = null,
36

37
        /** The URL that can be used to automatically complete the field. */
38
        public ?string $autoCompleteUrl = null,
39

40
        /**
41
         * The configuration properties.
42
         * 
43
         * @var array<string,mixed>
44
         */
45
        public ?array $configuration = null,
46

47
        /** The default value of the field. */
48
        public mixed $defaultValue = null,
49

50
        /** Whether the field has a default value. */
51
        public ?bool $hasDefaultValue = null,
52
    ) {
53
    }
×
54
}
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