
com.tencentcloudapi.dts.v20211206.models.SkippedItem Maven / Gradle / Ivy
/*
* 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.dts.v20211206.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 SkippedItem extends AbstractModel {
/**
* Database name
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("Db")
@Expose
private String Db;
/**
* Table name
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("Table")
@Expose
private String Table;
/**
* The cause why check is not initiated
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("Reason")
@Expose
private String Reason;
/**
* Get Database name
Note: This field may return null, indicating that no valid values can be obtained.
* @return Db Database name
Note: This field may return null, indicating that no valid values can be obtained.
*/
public String getDb() {
return this.Db;
}
/**
* Set Database name
Note: This field may return null, indicating that no valid values can be obtained.
* @param Db Database name
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setDb(String Db) {
this.Db = Db;
}
/**
* Get Table name
Note: This field may return null, indicating that no valid values can be obtained.
* @return Table Table name
Note: This field may return null, indicating that no valid values can be obtained.
*/
public String getTable() {
return this.Table;
}
/**
* Set Table name
Note: This field may return null, indicating that no valid values can be obtained.
* @param Table Table name
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setTable(String Table) {
this.Table = Table;
}
/**
* Get The cause why check is not initiated
Note: This field may return null, indicating that no valid values can be obtained.
* @return Reason The cause why check is not initiated
Note: This field may return null, indicating that no valid values can be obtained.
*/
public String getReason() {
return this.Reason;
}
/**
* Set The cause why check is not initiated
Note: This field may return null, indicating that no valid values can be obtained.
* @param Reason The cause why check is not initiated
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setReason(String Reason) {
this.Reason = Reason;
}
public SkippedItem() {
}
/**
* 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 SkippedItem(SkippedItem source) {
if (source.Db != null) {
this.Db = new String(source.Db);
}
if (source.Table != null) {
this.Table = new String(source.Table);
}
if (source.Reason != null) {
this.Reason = new String(source.Reason);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Db", this.Db);
this.setParamSimple(map, prefix + "Table", this.Table);
this.setParamSimple(map, prefix + "Reason", this.Reason);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy