![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkdatacenter_1_0.models.GetHolderInfoResponseBody 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.dingtalkdatacenter_1_0.models;
import com.aliyun.tea.*;
public class GetHolderInfoResponseBody extends TeaModel {
/**
* example:
* [ { "STOCK_TYPE": "企业法人", "STOCK_NAME": "xxx", "STOCK_PERCENT": "100.00%", "SHOULD_CAPI": "1000.0", "SHOULD_CAPI_TIME": "2007-09-28" } ]
*/
@NameInMap("data")
public String data;
@NameInMap("total")
public Long total;
public static GetHolderInfoResponseBody build(java.util.Map map) throws Exception {
GetHolderInfoResponseBody self = new GetHolderInfoResponseBody();
return TeaModel.build(map, self);
}
public GetHolderInfoResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public GetHolderInfoResponseBody setTotal(Long total) {
this.total = total;
return this;
}
public Long getTotal() {
return this.total;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy