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

com.aliyun.dingtalkesign_2_0.models.ChannelOrdersRequest 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.dingtalkesign_2_0.models;

import com.aliyun.tea.*;

public class ChannelOrdersRequest extends TeaModel {
    // 商品id
    @NameInMap("itemCode")
    public String itemCode;

    // 商品名称
    @NameInMap("itemName")
    public String itemName;

    // 下单时间
    @NameInMap("orderCreateTime")
    public Float orderCreateTime;

    // isv方的订单Id(用于幂等,请保证唯一性)
    @NameInMap("orderId")
    public String orderId;

    // 支付金额(以分为单位,仅作记录,不作为凭证)
    @NameInMap("payFee")
    public Float payFee;

    // 购买数量
    @NameInMap("quantity")
    public Float quantity;

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

    public ChannelOrdersRequest setItemCode(String itemCode) {
        this.itemCode = itemCode;
        return this;
    }
    public String getItemCode() {
        return this.itemCode;
    }

    public ChannelOrdersRequest setItemName(String itemName) {
        this.itemName = itemName;
        return this;
    }
    public String getItemName() {
        return this.itemName;
    }

    public ChannelOrdersRequest setOrderCreateTime(Float orderCreateTime) {
        this.orderCreateTime = orderCreateTime;
        return this;
    }
    public Float getOrderCreateTime() {
        return this.orderCreateTime;
    }

    public ChannelOrdersRequest setOrderId(String orderId) {
        this.orderId = orderId;
        return this;
    }
    public String getOrderId() {
        return this.orderId;
    }

    public ChannelOrdersRequest setPayFee(Float payFee) {
        this.payFee = payFee;
        return this;
    }
    public Float getPayFee() {
        return this.payFee;
    }

    public ChannelOrdersRequest setQuantity(Float quantity) {
        this.quantity = quantity;
        return this;
    }
    public Float getQuantity() {
        return this.quantity;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy