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

com.aliyun.dingtalkyida_1_0.models.UpgradeTenantInformationRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class UpgradeTenantInformationRequest extends TeaModel {
    // 访问秘钥
    @NameInMap("accessKey")
    public String accessKey;

    // 账户号
    @NameInMap("accountNumber")
    public String accountNumber;

    // 调用者unionId
    @NameInMap("callerUnionId")
    public String callerUnionId;

    // 商品类型
    @NameInMap("commodityType")
    public String commodityType;

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

    public UpgradeTenantInformationRequest setAccessKey(String accessKey) {
        this.accessKey = accessKey;
        return this;
    }
    public String getAccessKey() {
        return this.accessKey;
    }

    public UpgradeTenantInformationRequest setAccountNumber(String accountNumber) {
        this.accountNumber = accountNumber;
        return this;
    }
    public String getAccountNumber() {
        return this.accountNumber;
    }

    public UpgradeTenantInformationRequest setCallerUnionId(String callerUnionId) {
        this.callerUnionId = callerUnionId;
        return this;
    }
    public String getCallerUnionId() {
        return this.callerUnionId;
    }

    public UpgradeTenantInformationRequest setCommodityType(String commodityType) {
        this.commodityType = commodityType;
        return this;
    }
    public String getCommodityType() {
        return this.commodityType;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy