com.aliyun.dingtalkdatacenter_1_0.models.QueryDigitalDistrictOrgInfoResponseBody 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 QueryDigitalDistrictOrgInfoResponseBody extends TeaModel {
// arguments
@NameInMap("arguments")
public java.util.List arguments;
// result
@NameInMap("result")
public String result;
public static QueryDigitalDistrictOrgInfoResponseBody build(java.util.Map map) throws Exception {
QueryDigitalDistrictOrgInfoResponseBody self = new QueryDigitalDistrictOrgInfoResponseBody();
return TeaModel.build(map, self);
}
public QueryDigitalDistrictOrgInfoResponseBody setArguments(java.util.List arguments) {
this.arguments = arguments;
return this;
}
public java.util.List getArguments() {
return this.arguments;
}
public QueryDigitalDistrictOrgInfoResponseBody setResult(String result) {
this.result = result;
return this;
}
public String getResult() {
return this.result;
}
}