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