@@ -116,8 +116,6 @@ public boolean isSettable() {
116116
117117 private Long deviceInstanceId ;
118118
119- private Long deviceLogFirstTimestamp ;
120-
121119 private Long duration ;
122120
123121 private Date endTime ;
@@ -175,10 +173,10 @@ public APIDeviceSession() {
175173 public APIDeviceSession (
176174 Long id , String externalId , String clientSideId , Long userId , String userEmail , Long accountId ,
177175 APIDeviceSession .Type type , LocalDateTime createTime , LocalDateTime startTime , LocalDateTime installTime ,
178- LocalDateTime endTime , Long timeLimit , Long deviceLogFirstTimestamp , APIDeviceSession .State state ,
179- Integer testCasePassedCount , Integer testCaseFailedCount , Integer testCaseSkippedCount , Long deviceModelId ,
180- String displayName , String deviceManufacturer , Integer creditsPrice , String imagePrefix , Integer imageTop ,
181- Integer imageLeft , Integer imageWidth , Integer imageHeight , Integer frameExtraWidth ,
176+ LocalDateTime endTime , Long timeLimit , APIDeviceSession .State state , Integer testCasePassedCount ,
177+ Integer testCaseFailedCount , Integer testCaseSkippedCount , Long deviceModelId , String displayName ,
178+ String deviceManufacturer , Integer creditsPrice , String imagePrefix , Integer imageTop , Integer imageLeft ,
179+ Integer imageWidth , Integer imageHeight , Integer imageCornerRadius , Integer frameExtraWidth ,
182180 APIDevice .OsType osType , APIDevice .Platform platform , Boolean locked , Boolean enabled ,
183181 String releaseVersion , Integer apiLevel , ExcludeReason excludeReason , Long deviceInstanceId ,
184182 RetryState retryState , Integer autoRetriesLeftCount , Long duration , Long projectId , String projectName ,
@@ -196,10 +194,9 @@ public APIDeviceSession(
196194 this .installTime = TimeConverter .toDate (installTime );
197195 this .endTime = TimeConverter .toDate (endTime );
198196 this .device = new APIDevice (deviceModelId , displayName , deviceManufacturer , releaseVersion ,
199- apiLevel , creditsPrice , imagePrefix , imageTop , imageLeft , imageWidth , imageHeight , frameExtraWidth ,
200- osType , platform , null , locked , enabled , location , null , null , null , null );
197+ apiLevel , creditsPrice , imagePrefix , imageTop , imageLeft , imageWidth , imageHeight , imageCornerRadius ,
198+ frameExtraWidth , osType , platform , null , locked , enabled , location , null , null , null , null );
201199 this .timeLimit = timeLimit ;
202- this .deviceLogFirstTimestamp = deviceLogFirstTimestamp ;
203200 this .state = state ;
204201 this .excludeReason = excludeReason != null ? excludeReason .getDisplayName () : null ;
205202 this .testCaseAllCount = testCasePassedCount + testCaseFailedCount + testCaseSkippedCount ;
@@ -304,14 +301,6 @@ public void setInstallTime(Date installTime) {
304301 this .installTime = installTime ;
305302 }
306303
307- public Long getDeviceLogFirstTimestamp () {
308- return deviceLogFirstTimestamp ;
309- }
310-
311- public void setDeviceLogFirstTimestamp (Long deviceLogFirstTimestamp ) {
312- this .deviceLogFirstTimestamp = deviceLogFirstTimestamp ;
313- }
314-
315304 public State getState () {
316305 return state ;
317306 }
@@ -552,7 +541,6 @@ protected <T extends APIEntity> void clone(T from) {
552541 this .type = apiDeviceSession .type ;
553542 this .device = apiDeviceSession .device ;
554543 this .timeLimit = apiDeviceSession .timeLimit ;
555- this .deviceLogFirstTimestamp = apiDeviceSession .deviceLogFirstTimestamp ;
556544 this .state = apiDeviceSession .state ;
557545 this .testCaseAllCount = apiDeviceSession .testCaseAllCount ;
558546 this .testCaseSuccessCount = apiDeviceSession .testCaseSuccessCount ;
0 commit comments