com.aliyun.dingtalkdatacenter_1_0.models.GetAdministrativeLicensingResponseBody 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 GetAdministrativeLicensingResponseBody extends TeaModel {
/**
* example:
* [ { "LicenseNo": "梯4403331978", "StartDate": "2022-05-10", "Department": "深圳市市场监督管理局", "Content": "注册代码:7;设备种类:电梯", "LicenseName": "特种设备使用登记", "EndDate": "2099-12-31" }, { "LicenseNo": "东水务审﹝2021﹞8267号", "StartDate": "2021-06-11", "Department": "东莞市水务局", "Content": "水土保持方案审批准予行政许可决定", "LicenseName": "", "EndDate": "2026-12-31" } ]
*/
@NameInMap("data")
public String data;
@NameInMap("total")
public Long total;
public static GetAdministrativeLicensingResponseBody build(java.util.Map map) throws Exception {
GetAdministrativeLicensingResponseBody self = new GetAdministrativeLicensingResponseBody();
return TeaModel.build(map, self);
}
public GetAdministrativeLicensingResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public GetAdministrativeLicensingResponseBody setTotal(Long total) {
this.total = total;
return this;
}
public Long getTotal() {
return this.total;
}
}