com.tencentcloudapi.lke.v20231130.models.MsgRecordReference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-lke Show documentation
Show all versions of tencentcloud-sdk-java-lke Show documentation
Tencent Cloud Open 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.lke.v20231130.models;
import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class MsgRecordReference extends AbstractModel {
/**
* id
*/
@SerializedName("Id")
@Expose
private String Id;
/**
* 链接
*/
@SerializedName("Url")
@Expose
private String Url;
/**
* 类型
*/
@SerializedName("Type")
@Expose
private Long Type;
/**
* 名称
*/
@SerializedName("Name")
@Expose
private String Name;
/**
* 来源文档ID
*/
@SerializedName("DocId")
@Expose
private String DocId;
/**
* Get id
* @return Id id
*/
public String getId() {
return this.Id;
}
/**
* Set id
* @param Id id
*/
public void setId(String Id) {
this.Id = Id;
}
/**
* Get 链接
* @return Url 链接
*/
public String getUrl() {
return this.Url;
}
/**
* Set 链接
* @param Url 链接
*/
public void setUrl(String Url) {
this.Url = Url;
}
/**
* Get 类型
* @return Type 类型
*/
public Long getType() {
return this.Type;
}
/**
* Set 类型
* @param Type 类型
*/
public void setType(Long Type) {
this.Type = Type;
}
/**
* Get 名称
* @return Name 名称
*/
public String getName() {
return this.Name;
}
/**
* Set 名称
* @param Name 名称
*/
public void setName(String Name) {
this.Name = Name;
}
/**
* Get 来源文档ID
* @return DocId 来源文档ID
*/
public String getDocId() {
return this.DocId;
}
/**
* Set 来源文档ID
* @param DocId 来源文档ID
*/
public void setDocId(String DocId) {
this.DocId = DocId;
}
public MsgRecordReference() {
}
/**
* 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 MsgRecordReference(MsgRecordReference source) {
if (source.Id != null) {
this.Id = new String(source.Id);
}
if (source.Url != null) {
this.Url = new String(source.Url);
}
if (source.Type != null) {
this.Type = new Long(source.Type);
}
if (source.Name != null) {
this.Name = new String(source.Name);
}
if (source.DocId != null) {
this.DocId = new String(source.DocId);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Id", this.Id);
this.setParamSimple(map, prefix + "Url", this.Url);
this.setParamSimple(map, prefix + "Type", this.Type);
this.setParamSimple(map, prefix + "Name", this.Name);
this.setParamSimple(map, prefix + "DocId", this.DocId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy