com.aliyun.dingtalktrip_1_0.models.PreCheckTemplateRequest 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.dingtalktrip_1_0.models;
import com.aliyun.tea.*;
public class PreCheckTemplateRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* ding60f2b247ac1cb24024f2f5cc6abecb85
*/
@NameInMap("customerCorpId")
public String customerCorpId;
public static PreCheckTemplateRequest build(java.util.Map map) throws Exception {
PreCheckTemplateRequest self = new PreCheckTemplateRequest();
return TeaModel.build(map, self);
}
public PreCheckTemplateRequest setCustomerCorpId(String customerCorpId) {
this.customerCorpId = customerCorpId;
return this;
}
public String getCustomerCorpId() {
return this.customerCorpId;
}
}