We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f82b8f8 + db63ab1 commit 645df61Copy full SHA for 645df61
src/main/java/com/ecwid/consul/v1/health/model/HealthService.java
@@ -129,6 +129,9 @@ public static class Service {
129
@SerializedName("Address")
130
private String address;
131
132
+ @SerializedName("Meta")
133
+ private Map<String, String> meta;
134
+
135
@SerializedName("Port")
136
private Integer port;
137
@@ -173,6 +176,14 @@ public void setAddress(String address) {
173
176
this.address = address;
174
177
}
175
178
179
+ public Map<String, String> getMeta() {
180
+ return meta;
181
+ }
182
183
+ public void setMeta(Map<String, String> meta) {
184
+ this.meta = meta;
185
186
187
public Integer getPort() {
188
return port;
189
0 commit comments