
com.aliyun.dingtalktrip_1_0.models.PreCheckTemplateRequest Maven / Gradle / Ivy
// 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy