1
wei
2021-01-21 62d098cb78296feaa6f786a20748921338db838c
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
//
//  TuyaSmartSceneLogDetailModel.h
//  TuyaSmartSceneKit
//
//  Copyright (c) 2014-2021 Tuya Inc. (https://developer.tuya.com)
 
#import <Foundation/Foundation.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@class TuyaSmartSceneLogDetailData;
 
/// @brief TuyaSmartSceneLogDetailModel provides more attributes for developers to generate log detail model object.
@interface TuyaSmartSceneLogDetailModel : NSObject
 
/// The action entity id.
@property (nonatomic, strong) NSString *actionEntityId;
 
/// The action entity name.
@property (nonatomic, strong) NSString *actionEntityName;
 
/// The action entity URL.
@property (nonatomic, strong) NSString *actionEntityUrl;
 
/// The action executor type, eg: dpIssue, groupDpIssue.
@property (nonatomic, strong) NSString *actionExecutor;
 
/// The action id.
@property (nonatomic, strong) NSString *actionId;
 
/// The error code.
@property (nonatomic, strong) NSString *errorCode;
 
/// The error information of scene execution.
@property (nonatomic, strong) NSString *errorMsg;
 
/// The execute status of the action in the scene.
@property (nonatomic, assign) NSInteger execStatus;
 
/// The execute time of the action in the scene.
@property (nonatomic, strong) NSString *executeTime;
 
/// The detail data list of scene log.
@property (nonatomic, strong) NSArray<TuyaSmartSceneLogDetailData *> *detail;
 
@end
 
/// @brief TuyaSmartSceneLogDetailData provides more attributes for developers to generate log detail data object.
@interface TuyaSmartSceneLogDetailData: NSObject
 
/// The execute code of the action in the scene.
@property (nonatomic, strong) NSString *code;
 
/// The error message.
@property (nonatomic, strong) NSString *msg;
 
/// The execute status of the action in the scene.
@property (nonatomic, assign) NSInteger status;
 
/// The detail user name.
@property (nonatomic, strong) NSString *detailName;
 
/// The user id.
@property (nonatomic, strong) NSString *detailId;
 
/// The icon URL.
@property (nonatomic, strong) NSString * icon;
 
@end
 
NS_ASSUME_NONNULL_END