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

com.aliyun.dingtalkcontact_1_0.models.CreateCooperateOrgRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkcontact_1_0.models;

import com.aliyun.tea.*;

public class CreateCooperateOrgRequest extends TeaModel {
    /**
     * example:
     * 

123456

*/ @NameInMap("industryCode") public Long industryCode; /** * example: *

mediaId

*/ @NameInMap("logoMediaId") public String logoMediaId; /** *

This parameter is required.

* * example: *

测试联盟

*/ @NameInMap("orgName") public String orgName; public static CreateCooperateOrgRequest build(java.util.Map map) throws Exception { CreateCooperateOrgRequest self = new CreateCooperateOrgRequest(); return TeaModel.build(map, self); } public CreateCooperateOrgRequest setIndustryCode(Long industryCode) { this.industryCode = industryCode; return this; } public Long getIndustryCode() { return this.industryCode; } public CreateCooperateOrgRequest setLogoMediaId(String logoMediaId) { this.logoMediaId = logoMediaId; return this; } public String getLogoMediaId() { return this.logoMediaId; } public CreateCooperateOrgRequest setOrgName(String orgName) { this.orgName = orgName; return this; } public String getOrgName() { return this.orgName; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy