Skip to content

Commit f30efbe

Browse files
committed
Added digital to DeliveryMethod and DeliveryTimescale
1 parent acafde2 commit f30efbe

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/main/java/uk/gov/companieshouse/orders/api/model/DeliveryMethod.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66

77
public enum DeliveryMethod {
88
POSTAL,
9-
COLLECTION;
9+
COLLECTION,
10+
DIGITAL;
1011

1112
@JsonValue
1213
public String getJsonName() {

src/main/java/uk/gov/companieshouse/orders/api/model/DeliveryTimescale.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66

77
public enum DeliveryTimescale {
88
STANDARD,
9-
SAME_DAY;
9+
SAME_DAY,
10+
DIGITAL;
1011

1112
@JsonValue
1213
public String getJsonName() {

0 commit comments

Comments
 (0)