com.aliyun.dingtalkyida_1_0.models.RefundCommodityRequest 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.dingtalkyida_1_0.models;
import com.aliyun.tea.*;
public class RefundCommodityRequest extends TeaModel {
@NameInMap("accessKey")
public String accessKey;
@NameInMap("callerUid")
public String callerUid;
@NameInMap("instanceId")
public String instanceId;
public static RefundCommodityRequest build(java.util.Map map) throws Exception {
RefundCommodityRequest self = new RefundCommodityRequest();
return TeaModel.build(map, self);
}
public RefundCommodityRequest setAccessKey(String accessKey) {
this.accessKey = accessKey;
return this;
}
public String getAccessKey() {
return this.accessKey;
}
public RefundCommodityRequest setCallerUid(String callerUid) {
this.callerUid = callerUid;
return this;
}
public String getCallerUid() {
return this.callerUid;
}
public RefundCommodityRequest setInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
public String getInstanceId() {
return this.instanceId;
}
}