• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

rwjdk / TrelloDotNet / 12705056480

10 Jan 2025 07:18AM UTC coverage: 58.22% (-0.2%) from 58.422%
12705056480

push

github

rwjdk
Merge branch 'main' of https://github.com/rwjdk/TrelloDotNet

900 of 1884 branches covered (47.77%)

Branch coverage included in aggregate %.

2344 of 3688 relevant lines covered (63.56%)

47.85 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

52.94
/src/TrelloDotNet/Model/Actions/TrelloActionDataCard.cs
1
using System.Collections.Generic;
2
using System;
3
using System.Text.Json.Serialization;
4

5
namespace TrelloDotNet.Model.Actions
6
{
7
    /// <summary>
8
    /// Represent a Card on an Action
9
    /// </summary>
10
    public class TrelloActionDataCard
11
    {
12
        /// <summary>
13
        /// Id of the card
14
        /// </summary>
15
        [JsonPropertyName("id")]
16
        [JsonInclude]
17
        public string Id { get; private set; }
184✔
18

19
        /// <summary>
20
        /// Name of the card
21
        /// </summary>
22
        [JsonPropertyName("name")]
23
        [JsonInclude]
24
        public string Name { get; private set; }
184✔
25

26
        /// <summary>
27
        /// Id of the card in short form (only unique to the specific board)
28
        /// </summary>
29
        [JsonPropertyName("idShort")]
30
        [JsonInclude]
31
        public int IdShort { get; private set; }
169✔
32

33
        /// <summary>
34
        /// The short-link of the card
35
        /// </summary>
36
        [JsonPropertyName("shortLink")]
37
        [JsonInclude]
38
        public string ShortLink { get; private set; }
169✔
39

40
        /// <summary>
41
        /// due
42
        /// </summary>
43
        [JsonPropertyName("due")]
44
        [JsonInclude]
45
        public DateTimeOffset? Due { get; private set; }
1✔
46

47
        /// <summary>
48
        /// dueComplete
49
        /// </summary>
50
        [JsonPropertyName("dueComplete")]
51
        [JsonInclude]
52
        public bool? DueComplete { get; private set; }
2✔
53

54
        /// <summary>
55
        /// start
56
        /// </summary>
57
        [JsonPropertyName("start")]
58
        [JsonInclude]
59
        public DateTimeOffset? Start { get; private set; }
×
60

61
        /// <summary>
62
        /// idLabels
63
        /// </summary>
64
        [JsonPropertyName("idLabels")]
65
        [JsonInclude]
66
        public List<string> Labels { get; private set; }
36✔
67

68
        /// <summary>
69
        /// locationName
70
        /// </summary>
71
        [JsonPropertyName("locationName")]
72
        [JsonInclude]
73
        public string LocationName { get; private set; }
×
74

75
        /// <summary>
76
        /// address
77
        /// </summary>
78
        [JsonPropertyName("address")]
79
        [JsonInclude]
80
        public string Address { get; private set; }
×
81

82
        /// <summary>
83
        /// desc
84
        /// </summary>
85
        [JsonPropertyName("desc")]
86
        [JsonInclude]
87
        public string Description { get; private set; }
×
88

89
        /// <summary>
90
        /// idList
91
        /// </summary>
92
        [JsonPropertyName("idList")]
93
        [JsonInclude]
94
        public string ListId { get; private set; }
×
95

96
        /// <summary>
97
        /// pos
98
        /// </summary>
99
        [JsonPropertyName("pos")]
100
        [JsonInclude]
101
        public decimal? Position { get; private set; }
×
102

103
        /// <summary>
104
        /// dueReminder
105
        /// </summary>
106
        [JsonPropertyName("dueReminder")]
107
        [JsonInclude]
108
        public int? DueReminder { get; private set; }
1✔
109

110
        /// <summary>
111
        /// coordinates
112
        /// </summary>
113
        [JsonPropertyName("coordinates")]
114
        [JsonInclude]
115
        public Coordinates Coordinates { get; private set; }
×
116

117
        /// <summary>
118
        /// cover
119
        /// </summary>
120
        [JsonPropertyName("cover")]
121
        [JsonInclude]
122
        public CardCover Cover { get; private set; }
×
123

124
        /// <summary>
125
        /// Id of the image attachment of this card to use as its cover
126
        /// </summary>
127
        [JsonPropertyName("idAttachmentCover")]
128
        [JsonInclude]
129
        public string AttachmentCover { get; private set; }
3✔
130
    }
131
}
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

© 2025 Coveralls, Inc