• 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/AccessPoint.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
    "coord",
14
    "access_point_code",
15
    "embedded_type"
16
})
17
@Generated("jsonschema2pojo")
NEW
18
public class AccessPoint {
×
19

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

23
    @JsonProperty("name")
24
    private String name;
25

26
    @JsonProperty("coord")
27
    private Coord coord;
28

29
    @JsonProperty("access_point_code")
30
    private String accessPointCode;
31

32
    @JsonProperty("embedded_type")
33
    private EmbeddedAccessPointTypeEnum embeddedType;
34

NEW
35
    @JsonIgnore
×
36
    private Map<String, Object> additionalProperties = new HashMap<String, Object>();
37

38
    @JsonProperty("id")
39
    public String getId() {
NEW
40
        return id;
×
41
    }
42

43
    @JsonProperty("id")
44
    public void setId(String id) {
NEW
45
        this.id = id;
×
NEW
46
    }
×
47

48
    @JsonProperty("name")
49
    public String getName() {
NEW
50
        return name;
×
51
    }
52

53
    @JsonProperty("name")
54
    public void setName(String name) {
NEW
55
        this.name = name;
×
NEW
56
    }
×
57

58
    @JsonProperty("coord")
59
    public Coord getCoord() {
NEW
60
        return coord;
×
61
    }
62

63
    @JsonProperty("coord")
64
    public void setCoord(Coord coord) {
NEW
65
        this.coord = coord;
×
NEW
66
    }
×
67

68
    @JsonProperty("access_point_code")
69
    public String getAccessPointCode() {
NEW
70
        return accessPointCode;
×
71
    }
72

73
    @JsonProperty("access_point_code")
74
    public void setAccessPointCode(String accessPointCode) {
NEW
75
        this.accessPointCode = accessPointCode;
×
NEW
76
    }
×
77

78
    @JsonProperty("embedded_type")
79
    public EmbeddedAccessPointTypeEnum getEmbeddedType() {
NEW
80
        return embeddedType;
×
81
    }
82

83
    @JsonProperty("embedded_type")
84
    public void setEmbeddedType(EmbeddedAccessPointTypeEnum embeddedType) {
NEW
85
        this.embeddedType = embeddedType;
×
NEW
86
    }
×
87

88
    @JsonAnyGetter
89
    public Map<String, Object> getAdditionalProperties() {
NEW
90
        return this.additionalProperties;
×
91
    }
92

93
    @JsonAnySetter
94
    public void setAdditionalProperty(String name, Object value) {
NEW
95
        this.additionalProperties.put(name, value);
×
NEW
96
    }
×
97

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