com.tencentcloudapi.vpc.v20170312.models.VpcEndPointServiceUser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Tencent Cloud API SDK for Java
/*
* 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.vpc.v20170312.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class VpcEndPointServiceUser extends AbstractModel{
/**
* APP ID
*/
@SerializedName("Owner")
@Expose
private Long Owner;
/**
* User UIN
*/
@SerializedName("UserUin")
@Expose
private String UserUin;
/**
* Description
*/
@SerializedName("Description")
@Expose
private String Description;
/**
* Creation time
*/
@SerializedName("CreateTime")
@Expose
private String CreateTime;
/**
* Endpoint service ID
*/
@SerializedName("EndPointServiceId")
@Expose
private String EndPointServiceId;
/**
* Get APP ID
* @return Owner APP ID
*/
public Long getOwner() {
return this.Owner;
}
/**
* Set APP ID
* @param Owner APP ID
*/
public void setOwner(Long Owner) {
this.Owner = Owner;
}
/**
* Get User UIN
* @return UserUin User UIN
*/
public String getUserUin() {
return this.UserUin;
}
/**
* Set User UIN
* @param UserUin User UIN
*/
public void setUserUin(String UserUin) {
this.UserUin = UserUin;
}
/**
* Get Description
* @return Description Description
*/
public String getDescription() {
return this.Description;
}
/**
* Set Description
* @param Description Description
*/
public void setDescription(String Description) {
this.Description = Description;
}
/**
* Get Creation time
* @return CreateTime Creation time
*/
public String getCreateTime() {
return this.CreateTime;
}
/**
* Set Creation time
* @param CreateTime Creation time
*/
public void setCreateTime(String CreateTime) {
this.CreateTime = CreateTime;
}
/**
* Get Endpoint service ID
* @return EndPointServiceId Endpoint service ID
*/
public String getEndPointServiceId() {
return this.EndPointServiceId;
}
/**
* Set Endpoint service ID
* @param EndPointServiceId Endpoint service ID
*/
public void setEndPointServiceId(String EndPointServiceId) {
this.EndPointServiceId = EndPointServiceId;
}
public VpcEndPointServiceUser() {
}
/**
* 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 VpcEndPointServiceUser(VpcEndPointServiceUser source) {
if (source.Owner != null) {
this.Owner = new Long(source.Owner);
}
if (source.UserUin != null) {
this.UserUin = new String(source.UserUin);
}
if (source.Description != null) {
this.Description = new String(source.Description);
}
if (source.CreateTime != null) {
this.CreateTime = new String(source.CreateTime);
}
if (source.EndPointServiceId != null) {
this.EndPointServiceId = new String(source.EndPointServiceId);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Owner", this.Owner);
this.setParamSimple(map, prefix + "UserUin", this.UserUin);
this.setParamSimple(map, prefix + "Description", this.Description);
this.setParamSimple(map, prefix + "CreateTime", this.CreateTime);
this.setParamSimple(map, prefix + "EndPointServiceId", this.EndPointServiceId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy