Skip to content

Commit 3e45a08

Browse files
committedJul 22, 2021
DeliveryType property added to Server
DeliveryType -> Specifies the type of environment for your server. Possible options: Live Sandbox. Defaults to Live if not specified. This cannot be changed after the server has been created. See more -> https://postmarkapp.com/developer/api/servers-api
1 parent 0cdc6a0 commit 3e45a08

File tree

1 file changed

+9
-0
lines changed
  • src/main/java/com/wildbit/java/postmark/client/data/model/server

1 file changed

+9
-0
lines changed
 

‎src/main/java/com/wildbit/java/postmark/client/data/model/server/Server.java

+9
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ public class Server {
2828
private String inboundHash;
2929
private String inboundSpamThreshold;
3030
private String enableSmtpApiErrorHooks;
31+
private String deliveryType;
3132

3233
// SETTERS AND GETTERS
3334

@@ -194,4 +195,12 @@ public String getInboundSpamThreshold() {
194195
public void setInboundSpamThreshold(String inboundSpamThreshold) {
195196
this.inboundSpamThreshold = inboundSpamThreshold;
196197
}
198+
199+
public String getDeliveryType() {
200+
return deliveryType;
201+
}
202+
203+
public void setDeliveryType(String deliveryType) {
204+
this.deliveryType = deliveryType;
205+
}
197206
}

0 commit comments

Comments
 (0)