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

Invoiced / invoiced-java / #255

02 Feb 2024 11:00PM CUT coverage: 81.958%. Remained the same
#255

push

github

jaredtking
Add publish action

695 of 848 relevant lines covered (81.96%)

0.82 hits per line

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

0.0
/src/main/java/com/invoiced/entity/ShippingDetail.java
1
package com.invoiced.entity;
2

3
import com.fasterxml.jackson.annotation.JsonInclude;
4
import com.fasterxml.jackson.annotation.JsonProperty;
5

6
public final class ShippingDetail extends AbstractItem {
×
7

8
    @JsonInclude(JsonInclude.Include.NON_EMPTY)
9
    @JsonProperty("name")
10
    public String name;
11

12
    @JsonInclude(JsonInclude.Include.NON_EMPTY)
13
    @JsonProperty("attention_to")
14
    public String attentionTo;
15

16
    @JsonInclude(JsonInclude.Include.NON_EMPTY)
17
    @JsonProperty("address1")
18
    public String address1;
19

20
    @JsonInclude(JsonInclude.Include.NON_EMPTY)
21
    @JsonProperty("address2")
22
    public String address2;
23

24
    @JsonInclude(JsonInclude.Include.NON_EMPTY)
25
    @JsonProperty("city")
26
    public String city;
27

28
    @JsonInclude(JsonInclude.Include.NON_EMPTY)
29
    @JsonProperty("state")
30
    public String state;
31

32
    @JsonInclude(JsonInclude.Include.NON_EMPTY)
33
    @JsonProperty("postal_code")
34
    public String postalCode;
35

36
    @JsonInclude(JsonInclude.Include.NON_EMPTY)
37
    @JsonProperty("country")
38
    public String country;
39

40
    @JsonProperty(value = "created_at", access = JsonProperty.Access.WRITE_ONLY)
41
    public Long createdAt;
42

43
    @JsonProperty(value = "updated_at", access = JsonProperty.Access.WRITE_ONLY)
44
    public Long updatedAt;
45
}
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

© 2025 Coveralls, Inc