com.aliyun.ecd20200930.models.ExportClientEventsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ecd20200930 Show documentation
Show all versions of ecd20200930 Show documentation
Alibaba Cloud ecd (20200930) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ecd20200930.models;
import com.aliyun.tea.*;
public class ExportClientEventsRequest extends TeaModel {
@NameInMap("DesktopId")
public String desktopId;
@NameInMap("DesktopName")
public String desktopName;
@NameInMap("EndTime")
public String endTime;
@NameInMap("EndUserId")
public String endUserId;
@NameInMap("EventType")
public String eventType;
@NameInMap("MaxResults")
public Integer maxResults;
@NameInMap("OfficeSiteId")
public String officeSiteId;
@NameInMap("OfficeSiteName")
public String officeSiteName;
@NameInMap("RegionId")
public String regionId;
@NameInMap("StartTime")
public String startTime;
public static ExportClientEventsRequest build(java.util.Map map) throws Exception {
ExportClientEventsRequest self = new ExportClientEventsRequest();
return TeaModel.build(map, self);
}
public ExportClientEventsRequest setDesktopId(String desktopId) {
this.desktopId = desktopId;
return this;
}
public String getDesktopId() {
return this.desktopId;
}
public ExportClientEventsRequest setDesktopName(String desktopName) {
this.desktopName = desktopName;
return this;
}
public String getDesktopName() {
return this.desktopName;
}
public ExportClientEventsRequest setEndTime(String endTime) {
this.endTime = endTime;
return this;
}
public String getEndTime() {
return this.endTime;
}
public ExportClientEventsRequest setEndUserId(String endUserId) {
this.endUserId = endUserId;
return this;
}
public String getEndUserId() {
return this.endUserId;
}
public ExportClientEventsRequest setEventType(String eventType) {
this.eventType = eventType;
return this;
}
public String getEventType() {
return this.eventType;
}
public ExportClientEventsRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ExportClientEventsRequest setOfficeSiteId(String officeSiteId) {
this.officeSiteId = officeSiteId;
return this;
}
public String getOfficeSiteId() {
return this.officeSiteId;
}
public ExportClientEventsRequest setOfficeSiteName(String officeSiteName) {
this.officeSiteName = officeSiteName;
return this;
}
public String getOfficeSiteName() {
return this.officeSiteName;
}
public ExportClientEventsRequest setRegionId(String regionId) {
this.regionId = regionId;
return this;
}
public String getRegionId() {
return this.regionId;
}
public ExportClientEventsRequest setStartTime(String startTime) {
this.startTime = startTime;
return this;
}
public String getStartTime() {
return this.startTime;
}
}