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

rwjdk / TrelloDotNet / 12973172764

26 Jan 2025 09:02AM UTC coverage: 56.133% (-0.8%) from 56.91%
12973172764

push

github

rwjdk
Version .1.11.9 (Last planned 1.x release)

933 of 1996 branches covered (46.74%)

Branch coverage included in aggregate %.

137 of 384 new or added lines in 21 files covered. (35.68%)

20 existing lines in 4 files now uncovered.

2449 of 4029 relevant lines covered (60.78%)

49.17 hits per line

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

0.0
/src/TrelloDotNet/Model/Options/GetInboxCardOptions/GetInboxCardOptions.cs
1
using System.Collections.Generic;
2
using TrelloDotNet.Model.Options.GetCardOptions;
3

4
namespace TrelloDotNet.Model.Options.GetInboxCardOptions
5
{
6
    /// <summary>
7
    /// Options on how and what should be included on the cards (Example only a few fields to increase performance or more nested data to avoid more API calls)
8
    /// </summary>
9
    public class GetInboxCardOptions
10
    {
11
        /// <summary>
12
        /// all or a comma-separated list of fields. Defaults: badges, checkItemStates, closed, dateLastActivity, desc, descData, due, start, email, idBoard, idChecklists, idLabels, idList, idMembers, idShort, idAttachmentCover, manualCoverAttachment, labels, name, pos, shortUrl, url
13
        /// </summary>
NEW
14
        public CardFields CardFields { get; set; }
×
15

16
        /// <summary>
17
        /// Provide one or more Card-action types there (TrelloDotNet.Model.Webhook.WebhookActionTypes) to get them included with the Card
18
        /// </summary>
NEW
19
        public ActionTypesToInclude ActionsTypes { get; set; }
×
20

21
        /// <summary>
22
        /// Controls if cards should include their attachments (Default: False)
23
        /// </summary>
NEW
24
        public GetCardOptionsIncludeAttachments IncludeAttachments { get; set; } = GetCardOptionsIncludeAttachments.False;
×
25

26
        /// <summary>
27
        /// What attachments-fields to include if IncludeAttachments are set to 'True' or 'Cover'
28
        /// </summary>
NEW
29
        public AttachmentFields AttachmentFields { get; set; }
×
30

31
        /// <summary>
32
        /// Whether to return checklist objects for members on the card (Default: False)
33
        /// </summary>
NEW
34
        public bool IncludeChecklists { get; set; }
×
35

36
        /// <summary>
37
        /// What checklist-fields to include if IncludeChecklists are set to True
38
        /// </summary>
NEW
39
        public ChecklistFields ChecklistFields { get; set; }
×
40

41
        /// <summary>
42
        /// Whether to return CustomFieldsItem objects of the card (Default: False)
43
        /// </summary>
NEW
44
        public bool IncludeCustomFieldItems { get; set; }
×
45

46
        /// <summary>
47
        /// Limit how many object are returned (Default All) [Only used by methods where multiple objects are returned
48
        /// </summary>
NEW
49
        public int? Limit { get; set; }
×
50

51
        /// <summary>
52
        /// A Card ID
53
        /// </summary>
NEW
54
        public string Before { get; set; } = null;
×
55

56
        /// <summary>
57
        /// A Card ID
58
        /// </summary>
NEW
59
        public string Since { get; set; } = null;
×
60

61
        /// <summary>
62
        /// What Kind of Cards should be included (Active, Closed/Archived or All)
63
        /// </summary>
NEW
64
        public CardsFilter? Filter { get; set; }
×
65

66
        /// <summary>
67
        /// Additional Parameters not supported out-of-the-box
68
        /// </summary>
NEW
69
        public List<QueryParameter> AdditionalParameters { get; set; } = new List<QueryParameter>();
×
70

71
        internal GetCardOptions.GetCardOptions ToCardOptions()
72
        {
NEW
73
            return new GetCardOptions.GetCardOptions
×
NEW
74
            {
×
NEW
75
                ActionsTypes = ActionsTypes,
×
NEW
76
                AdditionalParameters = AdditionalParameters,
×
NEW
77
                AttachmentFields = AttachmentFields,
×
NEW
78
                Before = Before,
×
NEW
79
                CardFields = CardFields,
×
NEW
80
                IncludeCustomFieldItems = IncludeCustomFieldItems,
×
NEW
81
                ChecklistFields = ChecklistFields,
×
NEW
82
                IncludeAttachments = IncludeAttachments,
×
NEW
83
                IncludeChecklists = IncludeChecklists,
×
NEW
84
                Limit = Limit,
×
NEW
85
                Since = Since,
×
NEW
86
                Filter = Filter
×
NEW
87
            };
×
88
        }
89
    }
90
}
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