com.aliyun.dingtalkdatacenter_1_0.models.CloseDataDeliverRequest 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 CloseDataDeliverRequest extends TeaModel {
/**
* example:
* DELIVER-3e1a2d2f-fa76-45e8-XXXX-7fd29307c859
*/
@NameInMap("deliverId")
public String deliverId;
/**
* example:
* RT
*/
@NameInMap("dispatchingItemType")
public String dispatchingItemType;
public static CloseDataDeliverRequest build(java.util.Map map) throws Exception {
CloseDataDeliverRequest self = new CloseDataDeliverRequest();
return TeaModel.build(map, self);
}
public CloseDataDeliverRequest setDeliverId(String deliverId) {
this.deliverId = deliverId;
return this;
}
public String getDeliverId() {
return this.deliverId;
}
public CloseDataDeliverRequest setDispatchingItemType(String dispatchingItemType) {
this.dispatchingItemType = dispatchingItemType;
return this;
}
public String getDispatchingItemType() {
return this.dispatchingItemType;
}
}