• 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/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
        /** The configuration properties. */
41
        public ?object $configuration = null,
42

43
        /** The default value of the field. */
44
        public mixed $defaultValue = null,
45

46
        /** Whether the field has a default value. */
47
        public ?bool $hasDefaultValue = null,
48
    ) {
49
    }
×
50
}
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