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

GuillaumeDmns / website-back / #7

20 Jan 2025 10:26PM UTC coverage: 0.0%. Remained the same
#7

push

GuillaumeDmns
Merge branch 'feat/navitia-placesplaces'

0 of 180 branches covered (0.0%)

Branch coverage included in aggregate %.

0 of 857 new or added lines in 37 files covered. (0.0%)

0 of 3154 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/Code.java
1
package com.gdamiens.website.idfm.navitia;
2

3
import com.fasterxml.jackson.annotation.*;
4
import jakarta.annotation.Generated;
5

6
import java.util.HashMap;
7
import java.util.Map;
8

9
@JsonInclude(JsonInclude.Include.NON_NULL)
10
@JsonPropertyOrder({
11
    "value",
12
    "type"
13
})
14
@Generated("jsonschema2pojo")
NEW
15
public class Code {
×
16

17
    @JsonProperty("value")
18
    private String value;
19

20
    @JsonProperty("type")
21
    private String type;
22

NEW
23
    @JsonIgnore
×
24
    private Map<String, Object> additionalProperties = new HashMap<String, Object>();
25

26
    @JsonProperty("value")
27
    public String getValue() {
NEW
28
        return value;
×
29
    }
30

31
    @JsonProperty("value")
32
    public void setValue(String value) {
NEW
33
        this.value = value;
×
NEW
34
    }
×
35

36
    @JsonProperty("type")
37
    public String getType() {
NEW
38
        return type;
×
39
    }
40

41
    @JsonProperty("type")
42
    public void setType(String type) {
NEW
43
        this.type = type;
×
NEW
44
    }
×
45

46
    @JsonAnyGetter
47
    public Map<String, Object> getAdditionalProperties() {
NEW
48
        return this.additionalProperties;
×
49
    }
50

51
    @JsonAnySetter
52
    public void setAdditionalProperty(String name, Object value) {
NEW
53
        this.additionalProperties.put(name, value);
×
NEW
54
    }
×
55

56
}
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