com.aliyun.dingtalkresident_1_0.models.GetPropertyInfoRequest 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.dingtalkresident_1_0.models;
import com.aliyun.tea.*;
public class GetPropertyInfoRequest extends TeaModel {
@NameInMap("propertyCorpId")
public String propertyCorpId;
public static GetPropertyInfoRequest build(java.util.Map map) throws Exception {
GetPropertyInfoRequest self = new GetPropertyInfoRequest();
return TeaModel.build(map, self);
}
public GetPropertyInfoRequest setPropertyCorpId(String propertyCorpId) {
this.propertyCorpId = propertyCorpId;
return this;
}
public String getPropertyCorpId() {
return this.propertyCorpId;
}
}