• 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/PhysicalMode.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
    "id",
12
    "name",
13
    "co2_emission_rate"
14
})
15
@Generated("jsonschema2pojo")
NEW
16
public class PhysicalMode {
×
17

18
    @JsonProperty("id")
19
    private String id;
20

21
    @JsonProperty("name")
22
    private String name;
23

24
    @JsonProperty("co2_emission_rate")
25
    private CO2EmissionRate co2EmissionRate;
26

NEW
27
    @JsonIgnore
×
28
    private Map<String, Object> additionalProperties = new HashMap<String, Object>();
29

30
    @JsonProperty("id")
31
    public String getId() {
NEW
32
        return id;
×
33
    }
34

35
    @JsonProperty("id")
36
    public void setId(String id) {
NEW
37
        this.id = id;
×
NEW
38
    }
×
39

40
    @JsonProperty("name")
41
    public String getName() {
NEW
42
        return name;
×
43
    }
44

45
    @JsonProperty("name")
46
    public void setName(String name) {
NEW
47
        this.name = name;
×
NEW
48
    }
×
49

50
    @JsonProperty("co2_emission_rate")
51
    public CO2EmissionRate getCo2EmissionRate() {
NEW
52
        return co2EmissionRate;
×
53
    }
54

55
    @JsonProperty("co2_emission_rate")
56
    public void setCo2EmissionRate(CO2EmissionRate co2EmissionRate) {
NEW
57
        this.co2EmissionRate = co2EmissionRate;
×
NEW
58
    }
×
59

60
    @JsonAnyGetter
61
    public Map<String, Object> getAdditionalProperties() {
NEW
62
        return this.additionalProperties;
×
63
    }
64

65
    @JsonAnySetter
66
    public void setAdditionalProperty(String name, Object value) {
NEW
67
        this.additionalProperties.put(name, value);
×
NEW
68
    }
×
69

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