forked from Hithomelabs/CFTunnels
59 lines
1.0 KiB
Java
59 lines
1.0 KiB
Java
package com.hithomelabs.CFTunnels.Models;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
public class Result {
|
|
|
|
private String accountId;
|
|
|
|
private Config config;
|
|
|
|
private String source;
|
|
|
|
private String tunnelId;
|
|
|
|
private Integer version;
|
|
|
|
public String getAccountId() {
|
|
return accountId;
|
|
}
|
|
|
|
public void setAccountId(String accountId) {
|
|
this.accountId = accountId;
|
|
}
|
|
|
|
public Config getConfig() {
|
|
return config;
|
|
}
|
|
|
|
public void setConfig(Config config) {
|
|
this.config = config;
|
|
}
|
|
|
|
public String getSource() {
|
|
return source;
|
|
}
|
|
|
|
public void setSource(String source) {
|
|
this.source = source;
|
|
}
|
|
|
|
|
|
public Integer getVersion() {
|
|
return version;
|
|
}
|
|
|
|
public void setVersion(Integer version) {
|
|
this.version = version;
|
|
}
|
|
|
|
public String getTunnelId() {
|
|
return tunnelId;
|
|
}
|
|
|
|
public void setTunnelId(String tunnelId) {
|
|
this.tunnelId = tunnelId;
|
|
}
|
|
}
|