com.tencentcloudapi.lke.v20231130.models.ReleaseRejectedQuestion 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 ReleaseRejectedQuestion extends AbstractModel {
/**
* 问题
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("Question")
@Expose
private String Question;
/**
* 更新时间
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("UpdateTime")
@Expose
private String UpdateTime;
/**
* 状态
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("Action")
@Expose
private Long Action;
/**
* 状态描述
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("ActionDesc")
@Expose
private String ActionDesc;
/**
* 失败原因
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("Message")
@Expose
private String Message;
/**
* Get 问题
注意:此字段可能返回 null,表示取不到有效值。
* @return Question 问题
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getQuestion() {
return this.Question;
}
/**
* Set 问题
注意:此字段可能返回 null,表示取不到有效值。
* @param Question 问题
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setQuestion(String Question) {
this.Question = Question;
}
/**
* Get 更新时间
注意:此字段可能返回 null,表示取不到有效值。
* @return UpdateTime 更新时间
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getUpdateTime() {
return this.UpdateTime;
}
/**
* Set 更新时间
注意:此字段可能返回 null,表示取不到有效值。
* @param UpdateTime 更新时间
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setUpdateTime(String UpdateTime) {
this.UpdateTime = UpdateTime;
}
/**
* Get 状态
注意:此字段可能返回 null,表示取不到有效值。
* @return Action 状态
注意:此字段可能返回 null,表示取不到有效值。
*/
public Long getAction() {
return this.Action;
}
/**
* Set 状态
注意:此字段可能返回 null,表示取不到有效值。
* @param Action 状态
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setAction(Long Action) {
this.Action = Action;
}
/**
* Get 状态描述
注意:此字段可能返回 null,表示取不到有效值。
* @return ActionDesc 状态描述
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getActionDesc() {
return this.ActionDesc;
}
/**
* Set 状态描述
注意:此字段可能返回 null,表示取不到有效值。
* @param ActionDesc 状态描述
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setActionDesc(String ActionDesc) {
this.ActionDesc = ActionDesc;
}
/**
* Get 失败原因
注意:此字段可能返回 null,表示取不到有效值。
* @return Message 失败原因
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getMessage() {
return this.Message;
}
/**
* Set 失败原因
注意:此字段可能返回 null,表示取不到有效值。
* @param Message 失败原因
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setMessage(String Message) {
this.Message = Message;
}
public ReleaseRejectedQuestion() {
}
/**
* 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 ReleaseRejectedQuestion(ReleaseRejectedQuestion source) {
if (source.Question != null) {
this.Question = new String(source.Question);
}
if (source.UpdateTime != null) {
this.UpdateTime = new String(source.UpdateTime);
}
if (source.Action != null) {
this.Action = new Long(source.Action);
}
if (source.ActionDesc != null) {
this.ActionDesc = new String(source.ActionDesc);
}
if (source.Message != null) {
this.Message = new String(source.Message);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Question", this.Question);
this.setParamSimple(map, prefix + "UpdateTime", this.UpdateTime);
this.setParamSimple(map, prefix + "Action", this.Action);
this.setParamSimple(map, prefix + "ActionDesc", this.ActionDesc);
this.setParamSimple(map, prefix + "Message", this.Message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy