com.aliyun.dingtalkfinance_1_0.models.DecodePayCodeRequest 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.dingtalkfinance_1_0.models;
import com.aliyun.tea.*;
public class DecodePayCodeRequest extends TeaModel {
@NameInMap("payCode")
public String payCode;
@NameInMap("requestId")
public String requestId;
public static DecodePayCodeRequest build(java.util.Map map) throws Exception {
DecodePayCodeRequest self = new DecodePayCodeRequest();
return TeaModel.build(map, self);
}
public DecodePayCodeRequest setPayCode(String payCode) {
this.payCode = payCode;
return this;
}
public String getPayCode() {
return this.payCode;
}
public DecodePayCodeRequest setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}