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

com.tencentcloudapi.billing.v20180709.models.ConsumptionResourceSummaryConditionValue Maven / Gradle / Ivy

There is a newer version: 3.1.1081
Show newest version
/*
 * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
 *
 * 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.
 */
package com.tencentcloudapi.billing.v20180709.models;

import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;

public class ConsumptionResourceSummaryConditionValue extends AbstractModel{

    /**
    * 产品列表
    */
    @SerializedName("Business")
    @Expose
    private ConditionBusiness [] Business;

    /**
    * 项目列表
    */
    @SerializedName("Project")
    @Expose
    private ConditionProject [] Project;

    /**
    * 地域列表
    */
    @SerializedName("Region")
    @Expose
    private ConditionRegion [] Region;

    /**
    * 付费模式列表
    */
    @SerializedName("PayMode")
    @Expose
    private ConditionPayMode [] PayMode;

    /**
     * Get 产品列表 
     * @return Business 产品列表
     */
    public ConditionBusiness [] getBusiness() {
        return this.Business;
    }

    /**
     * Set 产品列表
     * @param Business 产品列表
     */
    public void setBusiness(ConditionBusiness [] Business) {
        this.Business = Business;
    }

    /**
     * Get 项目列表 
     * @return Project 项目列表
     */
    public ConditionProject [] getProject() {
        return this.Project;
    }

    /**
     * Set 项目列表
     * @param Project 项目列表
     */
    public void setProject(ConditionProject [] Project) {
        this.Project = Project;
    }

    /**
     * Get 地域列表 
     * @return Region 地域列表
     */
    public ConditionRegion [] getRegion() {
        return this.Region;
    }

    /**
     * Set 地域列表
     * @param Region 地域列表
     */
    public void setRegion(ConditionRegion [] Region) {
        this.Region = Region;
    }

    /**
     * Get 付费模式列表 
     * @return PayMode 付费模式列表
     */
    public ConditionPayMode [] getPayMode() {
        return this.PayMode;
    }

    /**
     * Set 付费模式列表
     * @param PayMode 付费模式列表
     */
    public void setPayMode(ConditionPayMode [] PayMode) {
        this.PayMode = PayMode;
    }

    public ConsumptionResourceSummaryConditionValue() {
    }

    /**
     * NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
     *       and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
     */
    public ConsumptionResourceSummaryConditionValue(ConsumptionResourceSummaryConditionValue source) {
        if (source.Business != null) {
            this.Business = new ConditionBusiness[source.Business.length];
            for (int i = 0; i < source.Business.length; i++) {
                this.Business[i] = new ConditionBusiness(source.Business[i]);
            }
        }
        if (source.Project != null) {
            this.Project = new ConditionProject[source.Project.length];
            for (int i = 0; i < source.Project.length; i++) {
                this.Project[i] = new ConditionProject(source.Project[i]);
            }
        }
        if (source.Region != null) {
            this.Region = new ConditionRegion[source.Region.length];
            for (int i = 0; i < source.Region.length; i++) {
                this.Region[i] = new ConditionRegion(source.Region[i]);
            }
        }
        if (source.PayMode != null) {
            this.PayMode = new ConditionPayMode[source.PayMode.length];
            for (int i = 0; i < source.PayMode.length; i++) {
                this.PayMode[i] = new ConditionPayMode(source.PayMode[i]);
            }
        }
    }


    /**
     * Internal implementation, normal users should not use it.
     */
    public void toMap(HashMap map, String prefix) {
        this.setParamArrayObj(map, prefix + "Business.", this.Business);
        this.setParamArrayObj(map, prefix + "Project.", this.Project);
        this.setParamArrayObj(map, prefix + "Region.", this.Region);
        this.setParamArrayObj(map, prefix + "PayMode.", this.PayMode);

    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy