com.aliyun.dingtalkexclusive_1_0.models.OpportunitySearchResponseBody 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.dingtalkexclusive_1_0.models;
import com.aliyun.tea.*;
public class OpportunitySearchResponseBody extends TeaModel {
@NameInMap("opportunityExist")
public Boolean opportunityExist;
public static OpportunitySearchResponseBody build(java.util.Map map) throws Exception {
OpportunitySearchResponseBody self = new OpportunitySearchResponseBody();
return TeaModel.build(map, self);
}
public OpportunitySearchResponseBody setOpportunityExist(Boolean opportunityExist) {
this.opportunityExist = opportunityExist;
return this;
}
public Boolean getOpportunityExist() {
return this.opportunityExist;
}
}