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