com.aliyun.dingtalkdatacenter_1_0.models.QueryGeneralDataUpdateDateRequest 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.dingtalkdatacenter_1_0.models;
import com.aliyun.tea.*;
public class QueryGeneralDataUpdateDateRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("serviceId")
public String serviceId;
public static QueryGeneralDataUpdateDateRequest build(java.util.Map map) throws Exception {
QueryGeneralDataUpdateDateRequest self = new QueryGeneralDataUpdateDateRequest();
return TeaModel.build(map, self);
}
public QueryGeneralDataUpdateDateRequest setServiceId(String serviceId) {
this.serviceId = serviceId;
return this;
}
public String getServiceId() {
return this.serviceId;
}
}