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

cn.ucloud.uec.models.DescribeUEcVHostISPRequest Maven / Gradle / Ivy

There is a newer version: 1.2.30-release
Show newest version
/**
 * Copyright 2021 UCloud Technology Co., Ltd.
 *
 * 

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 cn.ucloud.uec.models; import cn.ucloud.common.annotation.UCloudParam; import cn.ucloud.common.request.Request; public class DescribeUEcVHostISPRequest extends Request { /** 运营商名称 */ @UCloudParam("IspName") private String ispName; /** 省份 */ @UCloudParam("Province") private String province; /** 城市 */ @UCloudParam("City") private String city; public String getIspName() { return ispName; } public void setIspName(String ispName) { this.ispName = ispName; } public String getProvince() { return province; } public void setProvince(String province) { this.province = province; } public String getCity() { return city; } public void setCity(String city) { this.city = city; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy