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

3
namespace Jira\Client\Schema;
4

5
use Jira\Client\Dto;
6

7
/** A list of issue IDs and the value to update a custom field to. */
8
final readonly class CustomFieldValueUpdate extends Dto
9
{
10
    public function __construct(
×
11
        /**
12
         * The list of issue IDs.
13
         * 
14
         * @var list<int>
15
         */
16
        public array $issueIds,
17

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