JLChen
2021-05-17 a722e767f98042d5ef6259d2dde7854c925e4167
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/**
 *  Auto created by ApiCreator Tool.
 *  SVN Rev: 79835, Author: 32725, Date: 2017-11-10 11:03:30 +0800 
 *  SHOULD NOT MODIFY!
 */
 
#ifndef _LC_OPENAPI_CLIENT_BreathingLightStatus_H_
#define _LC_OPENAPI_CLIENT_BreathingLightStatus_H_
 
#include "LCOpenApiDefine.h"
#include "LCOpenApiRequest.h"
#include "LCOpenApiResponse.h"
 
/** DESCRIPTION: 
获取呼吸灯状态
 
 */
 
namespace Dahua{
namespace LCOpenApi{
    using namespace std;
    class BreathingLightStatusRequest : public LCOpenApiRequest
    {
    public:
        class BreathingLightStatusRequestData
        {
        public:
            BreathingLightStatusRequestData();
            ~BreathingLightStatusRequestData();
            
        public:
            /** 授权token(userToken或accessToken) */
            string token;
        public:
            /** [cstr]breathingLightStatus */
            #define _STATIC_BreathingLightStatusRequestData_method "breathingLightStatus"
            string method;
        public:
            /** 设备ID */
            string deviceId;
 
        };
    public:
        BreathingLightStatusRequest();
        ~BreathingLightStatusRequest();
    public:
        virtual int build();
    public:
        BreathingLightStatusRequestData data;
    };
 
    
    typedef typename BreathingLightStatusRequest::BreathingLightStatusRequestData BreathingLightStatusRequestData;
 
 
    class BreathingLightStatusResponse : public LCOpenApiResponse
    {
    public:
        class BreathingLightStatusResponseData
        {
        public:
            BreathingLightStatusResponseData();
            ~BreathingLightStatusResponseData();
            
        public:
            /** 状态,1表示开启,0表示关闭 */
            string status;
 
        };
    public:
        BreathingLightStatusResponse();
        ~BreathingLightStatusResponse();
    public:
        virtual int parse();
    public:
        BreathingLightStatusResponseData data;
    };
 
    
    typedef typename BreathingLightStatusResponse::BreathingLightStatusResponseData BreathingLightStatusResponseData;
 
}
}
 
#endif