package com.hdl.sdk.link.core.bean.response;
|
|
import java.io.Serializable;
|
|
/**
|
* Created by jlchen on 11/12/21.
|
*
|
* @Description : AuthenticateResponseBean
|
*/
|
public class AuthenticateResponse extends BaseResponse {
|
private String code;
|
private GatewayObjects objects;
|
private Auth auth;
|
|
public String getCode() { return code; }
|
public void setCode(String value) { this.code = value; }
|
|
public GatewayObjects getObjects() { return objects; }
|
public void setObjects(GatewayObjects value) { this.objects = value; }
|
|
public Auth getAuth() { return auth; }
|
public void setAuth(Auth value) { this.auth = value; }
|
|
public class Auth implements Serializable {
|
private String localSecret;
|
|
public String getLocalSecret() { return localSecret; }
|
public void setLocalSecret(String value) { this.localSecret = value; }
|
}
|
|
public class GatewayObjects implements Serializable {
|
private String ip_address;
|
private String gatewayId;
|
private String oid;
|
|
public String getIPAddress() { return ip_address; }
|
public void setIPAddress(String value) { this.ip_address = value; }
|
|
public String getGatewayID() { return gatewayId; }
|
public void setGatewayID(String value) { this.gatewayId = value; }
|
|
public String getOID() { return oid; }
|
public void setOID(String value) { this.oid = value; }
|
}
|
|
|
}
|