
com.aliyun.dingtalkindustry_1_0.models.ExternalQueryExternalAppOrgsRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class ExternalQueryExternalAppOrgsRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* ecological
*/
@NameInMap("externalType")
public String externalType;
public static ExternalQueryExternalAppOrgsRequest build(java.util.Map map) throws Exception {
ExternalQueryExternalAppOrgsRequest self = new ExternalQueryExternalAppOrgsRequest();
return TeaModel.build(map, self);
}
public ExternalQueryExternalAppOrgsRequest setExternalType(String externalType) {
this.externalType = externalType;
return this;
}
public String getExternalType() {
return this.externalType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy