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