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

com.aliyuncs.ens.model.v20171110.DescribeEpnMeasurementDataResponse Maven / Gradle / Ivy

Go to download

Aliyun Open API SDK for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有 (C)阿里云计算有限公司 http://www.aliyun.com

The newest version!
/*
 * 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.aliyuncs.ens.model.v20171110;

import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ens.transform.v20171110.DescribeEpnMeasurementDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

/**
 * @author auto create
 * @version 
 */
public class DescribeEpnMeasurementDataResponse extends AcsResponse {

	private String requestId;

	private List measurementDatas;

	public String getRequestId() {
		return this.requestId;
	}

	public void setRequestId(String requestId) {
		this.requestId = requestId;
	}

	public List getMeasurementDatas() {
		return this.measurementDatas;
	}

	public void setMeasurementDatas(List measurementDatas) {
		this.measurementDatas = measurementDatas;
	}

	public static class MeasurementData {

		private String chargeModel;

		private String costCycle;

		private String costEndTime;

		private String costStartTime;

		private List bandWidthFeeDatas;

		public String getChargeModel() {
			return this.chargeModel;
		}

		public void setChargeModel(String chargeModel) {
			this.chargeModel = chargeModel;
		}

		public String getCostCycle() {
			return this.costCycle;
		}

		public void setCostCycle(String costCycle) {
			this.costCycle = costCycle;
		}

		public String getCostEndTime() {
			return this.costEndTime;
		}

		public void setCostEndTime(String costEndTime) {
			this.costEndTime = costEndTime;
		}

		public String getCostStartTime() {
			return this.costStartTime;
		}

		public void setCostStartTime(String costStartTime) {
			this.costStartTime = costStartTime;
		}

		public List getBandWidthFeeDatas() {
			return this.bandWidthFeeDatas;
		}

		public void setBandWidthFeeDatas(List bandWidthFeeDatas) {
			this.bandWidthFeeDatas = bandWidthFeeDatas;
		}

		public static class BandWidthFeeData {

			private String costCode;

			private String costName;

			private String costType;

			private Integer costVal;

			private String ispLine;

			public String getCostCode() {
				return this.costCode;
			}

			public void setCostCode(String costCode) {
				this.costCode = costCode;
			}

			public String getCostName() {
				return this.costName;
			}

			public void setCostName(String costName) {
				this.costName = costName;
			}

			public String getCostType() {
				return this.costType;
			}

			public void setCostType(String costType) {
				this.costType = costType;
			}

			public Integer getCostVal() {
				return this.costVal;
			}

			public void setCostVal(Integer costVal) {
				this.costVal = costVal;
			}

			public String getIspLine() {
				return this.ispLine;
			}

			public void setIspLine(String ispLine) {
				this.ispLine = ispLine;
			}
		}
	}

	@Override
	public DescribeEpnMeasurementDataResponse getInstance(UnmarshallerContext context) {
		return	DescribeEpnMeasurementDataResponseUnmarshaller.unmarshall(this, context);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy