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

com.jdcloud.sdk.service.billing.model.CalculateTotalPriceRequest Maven / Gradle / Ivy

There is a newer version: 1.1.13
Show newest version
/*
 * Copyright 2018 JDCLOUD.COM
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http:#www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * JDCLOUD BILLING PRICE Services API
 * 用户中心消费管理查询API接口
 *
 * OpenAPI spec version: v1
 * Contact: 
 *
 * NOTE: This class is auto generated by the jdcloud code generator program.
 */

package com.jdcloud.sdk.service.billing.model;

import java.util.List;
import java.util.ArrayList;
import com.jdcloud.sdk.annotation.Required;
import com.jdcloud.sdk.service.billing.model.OrderPriceProtocol;
import com.jdcloud.sdk.service.JdcloudRequest;

/**
 * 查询计费价格信息
 */
public class CalculateTotalPriceRequest extends JdcloudRequest implements java.io.Serializable {

    private static final long serialVersionUID = 1L;

    /**
     * 操作类型 1:创建 2:续费 3:升配 4:删除
     * Required:true
     */
    @Required
    private Integer cmd;

    /**
     * 计算价格的订单
     */
    private List orderList;

    /**
     * 操作时间,遵循ISO8601标准,使用UTC时间,格式为:YYYY-MM-DDTHH:mm:ssZ
     */
    private String operateTime;

    /**
     * 1:折扣(不需要传) 2:免费活动3:付费活动 4:推荐码 5:会员价 [{"promotionType":1,"activityCode":123},{"promotionType":2,"activityCode":}]
     */
    private String promotionInfo;

    /**
     * 客户端:1.PC端;2.移动端;
     */
    private Integer clientType;

    /**
     * 批量购买时数量
     * Required:true
     */
    @Required
    private Integer packageCount;

    /**
     * regionId
     * Required:true
     */
    @Required
    private String regionId;


    /**
     * get 操作类型 1:创建 2:续费 3:升配 4:删除
     *
     * @return
     */
    public Integer getCmd() {
        return cmd;
    }

    /**
     * set 操作类型 1:创建 2:续费 3:升配 4:删除
     *
     * @param cmd
     */
    public void setCmd(Integer cmd) {
        this.cmd = cmd;
    }

    /**
     * get 计算价格的订单
     *
     * @return
     */
    public List getOrderList() {
        return orderList;
    }

    /**
     * set 计算价格的订单
     *
     * @param orderList
     */
    public void setOrderList(List orderList) {
        this.orderList = orderList;
    }

    /**
     * get 操作时间,遵循ISO8601标准,使用UTC时间,格式为:YYYY-MM-DDTHH:mm:ssZ
     *
     * @return
     */
    public String getOperateTime() {
        return operateTime;
    }

    /**
     * set 操作时间,遵循ISO8601标准,使用UTC时间,格式为:YYYY-MM-DDTHH:mm:ssZ
     *
     * @param operateTime
     */
    public void setOperateTime(String operateTime) {
        this.operateTime = operateTime;
    }

    /**
     * get 1:折扣(不需要传) 2:免费活动3:付费活动 4:推荐码 5:会员价 [{"promotionType":1,"activityCode":123},{"promotionType":2,"activityCode":}]
     *
     * @return
     */
    public String getPromotionInfo() {
        return promotionInfo;
    }

    /**
     * set 1:折扣(不需要传) 2:免费活动3:付费活动 4:推荐码 5:会员价 [{"promotionType":1,"activityCode":123},{"promotionType":2,"activityCode":}]
     *
     * @param promotionInfo
     */
    public void setPromotionInfo(String promotionInfo) {
        this.promotionInfo = promotionInfo;
    }

    /**
     * get 客户端:1.PC端;2.移动端;
     *
     * @return
     */
    public Integer getClientType() {
        return clientType;
    }

    /**
     * set 客户端:1.PC端;2.移动端;
     *
     * @param clientType
     */
    public void setClientType(Integer clientType) {
        this.clientType = clientType;
    }

    /**
     * get 批量购买时数量
     *
     * @return
     */
    public Integer getPackageCount() {
        return packageCount;
    }

    /**
     * set 批量购买时数量
     *
     * @param packageCount
     */
    public void setPackageCount(Integer packageCount) {
        this.packageCount = packageCount;
    }

    /**
     * get regionId
     *
     * @return
     */
    public String getRegionId() {
        return regionId;
    }

    /**
     * set regionId
     *
     * @param regionId
     */
    public void setRegionId(String regionId) {
        this.regionId = regionId;
    }


    /**
     * set 操作类型 1:创建 2:续费 3:升配 4:删除
     *
     * @param cmd
     */
    public CalculateTotalPriceRequest cmd(Integer cmd) {
        this.cmd = cmd;
        return this;
    }

    /**
     * set 计算价格的订单
     *
     * @param orderList
     */
    public CalculateTotalPriceRequest orderList(List orderList) {
        this.orderList = orderList;
        return this;
    }

    /**
     * set 操作时间,遵循ISO8601标准,使用UTC时间,格式为:YYYY-MM-DDTHH:mm:ssZ
     *
     * @param operateTime
     */
    public CalculateTotalPriceRequest operateTime(String operateTime) {
        this.operateTime = operateTime;
        return this;
    }

    /**
     * set 1:折扣(不需要传) 2:免费活动3:付费活动 4:推荐码 5:会员价 [{"promotionType":1,"activityCode":123},{"promotionType":2,"activityCode":}]
     *
     * @param promotionInfo
     */
    public CalculateTotalPriceRequest promotionInfo(String promotionInfo) {
        this.promotionInfo = promotionInfo;
        return this;
    }

    /**
     * set 客户端:1.PC端;2.移动端;
     *
     * @param clientType
     */
    public CalculateTotalPriceRequest clientType(Integer clientType) {
        this.clientType = clientType;
        return this;
    }

    /**
     * set 批量购买时数量
     *
     * @param packageCount
     */
    public CalculateTotalPriceRequest packageCount(Integer packageCount) {
        this.packageCount = packageCount;
        return this;
    }

    /**
     * set regionId
     *
     * @param regionId
     */
    public CalculateTotalPriceRequest regionId(String regionId) {
        this.regionId = regionId;
        return this;
    }


    /**
     * add item to 计算价格的订单
     *
     * @param orderList
     */
    public void addOrderList(OrderPriceProtocol orderList) {
        if (this.orderList == null) {
            this.orderList = new ArrayList<>();
        }
        this.orderList.add(orderList);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy