com.aliyun.dingtalkedu_1_0.models.QueryPayResultRequest 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.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class QueryPayResultRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 12312333
*/
@NameInMap("faceId")
public String faceId;
/**
* This parameter is required.
*
* example:
* 202201240001
*/
@NameInMap("orderNo")
public String orderNo;
/**
* example:
* KSwZiSL1O7DiUNwjV168j3cP9ktp4bJTi5OQxAXre26KyBXza7+gCl/g1d0K3n3+9JhMqc2fUjBiENcAELw3Jb5xO/zslOeV4qFoMQfzW51+sdL/SSZCYvXEMhu9P6FAPhGZQ3vu6gr3oxUAXPIpWNb+sIfzR9epumoOXYeofH8=
*/
@NameInMap("signature")
public String signature;
/**
* This parameter is required.
*
* example:
* sn1234
*/
@NameInMap("sn")
public String sn;
/**
* example:
* 1644413947909
*/
@NameInMap("timestamp")
public Long timestamp;
/**
* This parameter is required.
*
* example:
* 20200231
*/
@NameInMap("userId")
public String userId;
/**
* example:
* 1.0
*/
@NameInMap("version")
public String version;
public static QueryPayResultRequest build(java.util.Map map) throws Exception {
QueryPayResultRequest self = new QueryPayResultRequest();
return TeaModel.build(map, self);
}
public QueryPayResultRequest setFaceId(String faceId) {
this.faceId = faceId;
return this;
}
public String getFaceId() {
return this.faceId;
}
public QueryPayResultRequest setOrderNo(String orderNo) {
this.orderNo = orderNo;
return this;
}
public String getOrderNo() {
return this.orderNo;
}
public QueryPayResultRequest setSignature(String signature) {
this.signature = signature;
return this;
}
public String getSignature() {
return this.signature;
}
public QueryPayResultRequest setSn(String sn) {
this.sn = sn;
return this;
}
public String getSn() {
return this.sn;
}
public QueryPayResultRequest setTimestamp(Long timestamp) {
this.timestamp = timestamp;
return this;
}
public Long getTimestamp() {
return this.timestamp;
}
public QueryPayResultRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
public QueryPayResultRequest setVersion(String version) {
this.version = version;
return this;
}
public String getVersion() {
return this.version;
}
}