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

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
/** A custom field and its new value with a list of issue to update. */
8
final readonly class MultipleCustomFieldValuesUpdate extends Dto
9
{
10
    public function __construct(
×
11
        /**
12
         * The ID or key of the custom field.
13
         * For example, `customfield_10010`.
14
         */
15
        public string $customField,
16

17
        /**
18
         * The list of issue IDs.
19
         * 
20
         * @var list<int>
21
         */
22
        public array $issueIds,
23

24
        /**
25
         * The value for the custom field.
26
         * The value must be compatible with the "custom field type" as follows:
27
         * 
28
         *  - `string` the value must be a string
29
         *  - `number` the value must be a number
30
         *  - `datetime` the value must be a string that represents a date in the ISO format or the simplified extended ISO format.
31
         * For example, `"2023-01-18T12:00:00-03:00"` or `"2023-01-18T12:00:00.000Z"`.
32
         * However, the milliseconds part is ignored
33
         *  - `user` the value must be an object that contains the `accountId` field
34
         *  - `group` the value must be an object that contains the group `name` or `groupId` field.
35
         * Because group names can change, we recommend using `groupId`
36
         * 
37
         * A list of appropriate values must be provided if the field is of the `list` "collection type".
38
         * 
39
         * @link https://developer.atlassian.com/platform/forge/manifest-reference/modules/jira-custom-field/#data-types
40
         * @link https://developer.atlassian.com/platform/forge/manifest-reference/modules/jira-custom-field/#collection-types
41
         */
42
        public mixed $value,
43
    ) {
44
    }
×
45
}
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