All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkdatacenter_1_0.models.CloseDataDeliverRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy