-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMasterUsage
148 lines (117 loc) · 3.29 KB
/
MasterUsage
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
package com.mmt.travel.app.testmetrictracer.model;
import com.mmt.travel.app.common.model.QueryKey;
/**
* Created by mmt6054 on 15/06/18.
*/
public class MasterUsage {
@QueryKey("direct")
private String deviceName;
@QueryKey("direct")
private int noOfCpuCore;
private boolean isInBackground;
@QueryKey("direct")
private String apkVersion;
@QueryKey("direct")
private String osVersion;
private int reportId;
@QueryKey("direct")
private String screenDensity;
@QueryKey("direct")
private String activityName;
@QueryKey("nested")
private ActivityLifeCycle activityLifeCycle;
@QueryKey("nested")
private CpuUsage cpuUsage;
@QueryKey("nested")
private DiskUsage diskUsage;
@QueryKey("nested")
private FrameUsage frameUsage;
@QueryKey("nested")
private MemoryUsage memoryUsage;
@QueryKey("nested")
private NetworkUsage networkUsage;
public String getDeviceName() {
return deviceName;
}
public void setDeviceName(String deviceName) {
this.deviceName = deviceName;
}
public int getNoOfCpuCore() {
return noOfCpuCore;
}
public void setNoOfCpuCore(int noOfCpuCore) {
this.noOfCpuCore = noOfCpuCore;
}
public boolean isInBackground() {
return isInBackground;
}
public void setInBackground(boolean inBackground) {
isInBackground = inBackground;
}
public String getApkVer() {
return apkVersion;
}
public void setApkVer(String apkVer) {
this.apkVersion = apkVer;
}
public String getOsVersion() {
return osVersion;
}
public void setOsVersion(String osVersion) {
this.osVersion = osVersion;
}
public ActivityLifeCycle getActivityLifeCycle() {
return activityLifeCycle;
}
public void setActivityLifeCycle(ActivityLifeCycle activityLifeCycle) {
this.activityLifeCycle = activityLifeCycle;
}
public CpuUsage getCpuUsage() {
return cpuUsage;
}
public void setCpuUsage(CpuUsage cpuUsage) {
this.cpuUsage = cpuUsage;
}
public DiskUsage getDiskUsage() {
return diskUsage;
}
public void setDiskUsage(DiskUsage diskUsage) {
this.diskUsage = diskUsage;
}
public FrameUsage getFrameUsage() {
return frameUsage;
}
public void setFrameUsage(FrameUsage frameUsage) {
this.frameUsage = frameUsage;
}
public MemoryUsage getMemoryUsage() {
return memoryUsage;
}
public void setMemoryUsage(MemoryUsage memoryUsage) {
this.memoryUsage = memoryUsage;
}
public NetworkUsage getNetworkUsage() {
return networkUsage;
}
public void setNetworkUsage(NetworkUsage networkUsage) {
this.networkUsage = networkUsage;
}
public int getReportId() {
return reportId;
}
public void setReportId(int reportId) {
this.reportId = reportId;
}
public String getScreenDensity() {
return screenDensity;
}
public void setScreenDensity(String screenDensity) {
this.screenDensity = screenDensity;
}
public String getActivityName() {
return activityName;
}
public void setActivityName(String activityName) {
this.activityName = activityName;
}
}