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

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
/** The metadata describing an issue field for createmeta. */
8
final readonly class FieldCreateMetadata extends Dto
9
{
10
    public function __construct(
×
11
        /** The field id. */
12
        public string $fieldId,
13

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

17
        /** The name of the field. */
18
        public string $name,
19

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

27
        /** Whether the field is required. */
28
        public bool $required,
29

30
        /** The data type of the field. */
31
        public JsonTypeBean $schema,
32

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

40
        /** The URL that can be used to automatically complete the field. */
41
        public ?string $autoCompleteUrl = null,
42

43
        /** The configuration properties. */
44
        public ?object $configuration = null,
45

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

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