com.aliyun.dingtalkedu_1_0.models.QueryUserPayInfoResponseBody 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 QueryUserPayInfoResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* 123
*/
@NameInMap("signNo")
public String signNo;
public static QueryUserPayInfoResponseBody build(java.util.Map map) throws Exception {
QueryUserPayInfoResponseBody self = new QueryUserPayInfoResponseBody();
return TeaModel.build(map, self);
}
public QueryUserPayInfoResponseBody setSignNo(String signNo) {
this.signNo = signNo;
return this;
}
public String getSignNo() {
return this.signNo;
}
}