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

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
final readonly class BulkFetchIssueRequestBean extends Dto
8
{
9
    public function __construct(
×
10
        /**
11
         * An array of issue IDs or issue keys to fetch.
12
         * You can mix issue IDs and keys in the same query.
13
         * 
14
         * @var list<string>
15
         */
16
        public array $issueIdsOrKeys,
17

18
        /**
19
         * Use "expand" to include additional information about issues in the response.
20
         * Note that, unlike the majority of instances where `expand` is specified, `expand` is defined as a list of values.
21
         * The expand options are:
22
         * 
23
         *  - `renderedFields` Returns field values rendered in HTML format
24
         *  - `names` Returns the display name of each field
25
         *  - `schema` Returns the schema describing a field type
26
         *  - `transitions` Returns all possible transitions for the issue
27
         *  - `operations` Returns all possible operations for the issue
28
         *  - `editmeta` Returns information about how each field can be edited
29
         *  - `changelog` Returns a list of recent updates to an issue, sorted by date, starting from the most recent
30
         *  - `versionedRepresentations` Instead of `fields`, returns `versionedRepresentations` a JSON array containing each version of a field's value, with the highest numbered item representing the most recent version.
31
         * 
32
         * @var ?list<string>
33
         */
34
        public ?array $expand = null,
35

36
        /**
37
         * A list of fields to return for each issue, use it to retrieve a subset of fields.
38
         * This parameter accepts a comma-separated list.
39
         * Expand options include:
40
         * 
41
         *  - `*all` Returns all fields
42
         *  - `*navigable` Returns navigable fields
43
         *  - Any issue field, prefixed with a minus to exclude
44
         * 
45
         * The default is `*navigable`
46
         * 
47
         * Examples:
48
         * 
49
         *  - `summary,comment` Returns the summary and comments fields only
50
         *  - `-description` Returns all navigable (default) fields except description
51
         *  - `*all,-comment` Returns all fields except comments
52
         * 
53
         * Multiple `fields` parameters can be included in a request
54
         * 
55
         * Note: All navigable fields are returned by default.
56
         * This differs from "GET issue" where the default is all fields.
57
         * 
58
         * @var ?list<string>
59
         */
60
        public ?array $fields = null,
61

62
        /**
63
         * Reference fields by their key (rather than ID).
64
         * The default is `false`.
65
         */
66
        public ?bool $fieldsByKeys = null,
67

68
        /**
69
         * A list of issue property keys of issue properties to be included in the results.
70
         * A maximum of 5 issue property keys can be specified.
71
         * 
72
         * @var ?list<string>
73
         */
74
        public ?array $properties = null,
75
    ) {
76
    }
×
77
}
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