![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkdatacenter_1_0.models.GetInvestmentAbroadResponseBody 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 GetInvestmentAbroadResponseBody extends TeaModel {
/**
* example:
* [ { "InvestLicenseNo": "440301104818958", "InvestStatus": "在营", "InvestEsDate": "1998-11-25", "InvestCreditCode": "914403007084643962", "ShouldCap": "2000.0万人民币", "EntName": "华为技术有限公司", "InvestLegalName": "汤启兵", "StockPercentage": "100.0%", "InvestName": "深圳市华为技术服务有限公司", "InvestRegCap": "2000.0万人民币" } ]
*/
@NameInMap("data")
public String data;
@NameInMap("total")
public Long total;
public static GetInvestmentAbroadResponseBody build(java.util.Map map) throws Exception {
GetInvestmentAbroadResponseBody self = new GetInvestmentAbroadResponseBody();
return TeaModel.build(map, self);
}
public GetInvestmentAbroadResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public GetInvestmentAbroadResponseBody setTotal(Long total) {
this.total = total;
return this;
}
public Long getTotal() {
return this.total;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy