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

GuillaumeDmns / website-back / 26

07 Dec 2025 10:45PM UTC coverage: 0.0%. Remained the same
26

push

github

GuillaumeDmns
Add some more Navitia fields

0 of 234 branches covered (0.0%)

Branch coverage included in aggregate %.

0 of 42 new or added lines in 4 files covered. (0.0%)

3 existing lines in 3 files now uncovered.

0 of 4249 relevant lines covered (0.0%)

0.0 hits per line

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

0.0
/src/main/java/com/gdamiens/website/idfm/navitia/Ticket.java
1
package com.gdamiens.website.idfm.navitia;
2

3
import com.fasterxml.jackson.annotation.JsonAnyGetter;
4
import com.fasterxml.jackson.annotation.JsonAnySetter;
5
import com.fasterxml.jackson.annotation.JsonIgnore;
6
import com.fasterxml.jackson.annotation.JsonInclude;
7
import com.fasterxml.jackson.annotation.JsonProperty;
8
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
9
import jakarta.annotation.Generated;
10

11
import java.util.HashMap;
12
import java.util.List;
13
import java.util.Map;
14

15
@JsonInclude(JsonInclude.Include.NON_NULL)
16
@JsonPropertyOrder({
17
    "comment",
18
    "name",
19
    "links",
20
    "cost",
21
    "found",
22
    "id",
23
    "source_id"
24
})
25
@Generated("jsonschema2pojo")
26
public class Ticket {
×
27

28
    @JsonProperty("comment")
29
    private String comment;
30

31
    @JsonProperty("name")
32
    private String name;
33

34
    @JsonProperty("links")
×
35
    private List<LinkSchema> links = null;
36

37
    @JsonProperty("cost")
38
    private Cost cost;
39

40
    @JsonProperty("found")
41
    private Boolean found;
42

43
    @JsonProperty("id")
44
    private String id;
45

46
    private String sourceId;
47

UNCOV
48
    @JsonIgnore
×
49
    private Map<String, Object> additionalProperties = new HashMap<String, Object>();
50

51
    @JsonProperty("comment")
52
    public String getComment() {
53
        return comment;
×
54
    }
55

56
    @JsonProperty("comment")
57
    public void setComment(String comment) {
58
        this.comment = comment;
×
59
    }
×
60

61
    @JsonProperty("name")
62
    public String getName() {
63
        return name;
×
64
    }
65

66
    @JsonProperty("name")
67
    public void setName(String name) {
68
        this.name = name;
×
69
    }
×
70

71
    @JsonProperty("links")
72
    public List<LinkSchema> getLinks() {
73
        return links;
×
74
    }
75

76
    @JsonProperty("links")
77
    public void setLinks(List<LinkSchema> links) {
78
        this.links = links;
×
79
    }
×
80

81
    @JsonProperty("cost")
82
    public Cost getCost() {
83
        return cost;
×
84
    }
85

86
    @JsonProperty("cost")
87
    public void setCost(Cost cost) {
88
        this.cost = cost;
×
89
    }
×
90

91
    @JsonProperty("found")
92
    public Boolean getFound() {
93
        return found;
×
94
    }
95

96
    @JsonProperty("found")
97
    public void setFound(Boolean found) {
98
        this.found = found;
×
99
    }
×
100

101
    @JsonProperty("id")
102
    public String getId() {
103
        return id;
×
104
    }
105

106
    @JsonProperty("id")
107
    public void setId(String id) {
108
        this.id = id;
×
109
    }
×
110

111
    @JsonProperty("sourceId")
112
    public String getSourceId() {
NEW
113
        return sourceId;
×
114
    }
115

116
    @JsonProperty("source_id")
117
    public void setSourceId(String sourceId) {
NEW
118
        this.sourceId = sourceId;
×
NEW
119
    }
×
120

121
    @JsonAnyGetter
122
    public Map<String, Object> getAdditionalProperties() {
123
        return this.additionalProperties;
×
124
    }
125

126
    @JsonAnySetter
127
    public void setAdditionalProperty(String name, Object value) {
128
        this.additionalProperties.put(name, value);
×
129
    }
×
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

© 2026 Coveralls, Inc