package com.hdl.sdk.connect.bean.response;
|
|
import java.io.Serializable;
|
|
/**
|
* Created by jlchen on 11/12/21.
|
*
|
* @Description : DeviceInfoResponse
|
*/
|
public class DeviceInfoResponse extends BaseResponse {
|
private GatewayObjects objects;
|
|
public GatewayObjects getObjects() {
|
return objects;
|
}
|
|
public void setObjects(GatewayObjects value) {
|
this.objects = value;
|
}
|
|
public class GatewayObjects implements Serializable {
|
private String ip_address;
|
private String gatewayId;
|
private String oid;
|
private String homeId;
|
private String mac;
|
private String local_secret;
|
|
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;
|
}
|
|
public String getHomeId() {
|
return homeId;
|
}
|
|
public void setHomeId(String homeId) {
|
this.homeId = homeId;
|
}
|
|
public String getMac() {
|
return mac;
|
}
|
|
public void setMac(String mac) {
|
this.mac = mac;
|
}
|
|
public String getLocalSecret() {
|
return local_secret;
|
}
|
|
public void setLocalSecret(String localSecret) {
|
local_secret = localSecret;
|
}
|
}
|
|
|
}
|