
com.aliyun.dingtalkservice_group_1_0.models.GetAuthTokenRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkservice_group_1_0.models;
import com.aliyun.tea.*;
public class GetAuthTokenRequest extends TeaModel {
@NameInMap("channel")
public String channel;
@NameInMap("effectiveTime")
public Long effectiveTime;
@NameInMap("openTeamId")
public String openTeamId;
@NameInMap("serverId")
public String serverId;
@NameInMap("serverName")
public String serverName;
public static GetAuthTokenRequest build(java.util.Map map) throws Exception {
GetAuthTokenRequest self = new GetAuthTokenRequest();
return TeaModel.build(map, self);
}
public GetAuthTokenRequest setChannel(String channel) {
this.channel = channel;
return this;
}
public String getChannel() {
return this.channel;
}
public GetAuthTokenRequest setEffectiveTime(Long effectiveTime) {
this.effectiveTime = effectiveTime;
return this;
}
public Long getEffectiveTime() {
return this.effectiveTime;
}
public GetAuthTokenRequest setOpenTeamId(String openTeamId) {
this.openTeamId = openTeamId;
return this;
}
public String getOpenTeamId() {
return this.openTeamId;
}
public GetAuthTokenRequest setServerId(String serverId) {
this.serverId = serverId;
return this;
}
public String getServerId() {
return this.serverId;
}
public GetAuthTokenRequest setServerName(String serverName) {
this.serverName = serverName;
return this;
}
public String getServerName() {
return this.serverName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy