com.aliyun.dingtalkyida_1_0.models.RenewTenantOrderRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkyida_1_0.models;
import com.aliyun.tea.*;
public class RenewTenantOrderRequest extends TeaModel {
// 访问秘钥
@NameInMap("accessKey")
public String accessKey;
// 调用者unionId
@NameInMap("callerUnionId")
public String callerUnionId;
// 结束时间
@NameInMap("endTimeGMT")
public Long endTimeGMT;
public static RenewTenantOrderRequest build(java.util.Map map) throws Exception {
RenewTenantOrderRequest self = new RenewTenantOrderRequest();
return TeaModel.build(map, self);
}
public RenewTenantOrderRequest setAccessKey(String accessKey) {
this.accessKey = accessKey;
return this;
}
public String getAccessKey() {
return this.accessKey;
}
public RenewTenantOrderRequest setCallerUnionId(String callerUnionId) {
this.callerUnionId = callerUnionId;
return this;
}
public String getCallerUnionId() {
return this.callerUnionId;
}
public RenewTenantOrderRequest setEndTimeGMT(Long endTimeGMT) {
this.endTimeGMT = endTimeGMT;
return this;
}
public Long getEndTimeGMT() {
return this.endTimeGMT;
}
}