wjc
2024-12-23 f753d8366041354da60b8096060f3ab5159e3880
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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; }
    }
 
 
}