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

3
namespace Jira\Client\Schema;
4

5
use DateTimeImmutable;
6
use Jira\Client\Dto;
7

8
/** Metadata for an issue attachment. */
9
final readonly class AttachmentMetadata extends Dto
10
{
11
    public function __construct(
×
12
        /** Details of the user who attached the file. */
13
        public ?User $author = null,
14

15
        /** The URL of the attachment. */
16
        public ?string $content = null,
17

18
        /** The datetime the attachment was created. */
19
        public ?DateTimeImmutable $created = null,
20

21
        /** The name of the attachment file. */
22
        public ?string $filename = null,
23

24
        /** The ID of the attachment. */
25
        public ?int $id = null,
26

27
        /** The MIME type of the attachment. */
28
        public ?string $mimeType = null,
29

30
        /** Additional properties of the attachment. */
31
        public ?object $properties = null,
32

33
        /** The URL of the attachment metadata details. */
34
        public ?string $self = null,
35

36
        /** The size of the attachment. */
37
        public ?int $size = null,
38

39
        /** The URL of a thumbnail representing the attachment. */
40
        public ?string $thumbnail = null,
41
    ) {
42
    }
×
43
}
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