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

com.aliyun.dingtalkyida_1_0.models.BuyAuthorizationOrderRequest 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 BuyAuthorizationOrderRequest extends TeaModel {
    // 访问秘钥
    @NameInMap("accessKey")
    public String accessKey;

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

    // 开始时间
    @NameInMap("beginTimeGMT")
    public Long beginTimeGMT;

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

    // 收费类型
    @NameInMap("chargeType")
    public String chargeType;

    // 商业类型
    @NameInMap("commerceType")
    public String commerceType;

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

    // 结束时间
    @NameInMap("endTimeGMT")
    public Long endTimeGMT;

    // 实例id
    @NameInMap("instanceId")
    public String instanceId;

    // 实例名称
    @NameInMap("instanceName")
    public String instanceName;

    // 阿里云产品码
    @NameInMap("produceCode")
    public String produceCode;

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

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

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

    public BuyAuthorizationOrderRequest setBeginTimeGMT(Long beginTimeGMT) {
        this.beginTimeGMT = beginTimeGMT;
        return this;
    }
    public Long getBeginTimeGMT() {
        return this.beginTimeGMT;
    }

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

    public BuyAuthorizationOrderRequest setChargeType(String chargeType) {
        this.chargeType = chargeType;
        return this;
    }
    public String getChargeType() {
        return this.chargeType;
    }

    public BuyAuthorizationOrderRequest setCommerceType(String commerceType) {
        this.commerceType = commerceType;
        return this;
    }
    public String getCommerceType() {
        return this.commerceType;
    }

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

    public BuyAuthorizationOrderRequest setEndTimeGMT(Long endTimeGMT) {
        this.endTimeGMT = endTimeGMT;
        return this;
    }
    public Long getEndTimeGMT() {
        return this.endTimeGMT;
    }

    public BuyAuthorizationOrderRequest setInstanceId(String instanceId) {
        this.instanceId = instanceId;
        return this;
    }
    public String getInstanceId() {
        return this.instanceId;
    }

    public BuyAuthorizationOrderRequest setInstanceName(String instanceName) {
        this.instanceName = instanceName;
        return this;
    }
    public String getInstanceName() {
        return this.instanceName;
    }

    public BuyAuthorizationOrderRequest setProduceCode(String produceCode) {
        this.produceCode = produceCode;
        return this;
    }
    public String getProduceCode() {
        return this.produceCode;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy