All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.antgroup.antchain.openapi.riskplus.models.RtopCompanyOpinionCount Maven / Gradle / Ivy

There is a newer version: 1.20.2
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.riskplus.models;

import com.aliyun.tea.*;

public class RtopCompanyOpinionCount extends TeaModel {
    // 企业名称
    @NameInMap("company_name")
    @Validation(required = true)
    public String companyName;

    // 企业对应的舆情数量
    @NameInMap("count")
    @Validation(required = true)
    public Integer count;

    public static RtopCompanyOpinionCount build(java.util.Map map) throws Exception {
        RtopCompanyOpinionCount self = new RtopCompanyOpinionCount();
        return TeaModel.build(map, self);
    }

    public RtopCompanyOpinionCount setCompanyName(String companyName) {
        this.companyName = companyName;
        return this;
    }
    public String getCompanyName() {
        return this.companyName;
    }

    public RtopCompanyOpinionCount setCount(Integer count) {
        this.count = count;
        return this;
    }
    public Integer getCount() {
        return this.count;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy