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

com.tencentcloudapi.dasb.v20191018.models.ChangePwdTaskDetail Maven / Gradle / Ivy

There is a newer version: 3.1.1144
Show newest version
/*
 * 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.dasb.v20191018.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 ChangePwdTaskDetail extends AbstractModel {

    /**
    * 资产信息
注意:此字段可能返回 null,表示取不到有效值。
    */
    @SerializedName("Device")
    @Expose
    private Device Device;

    /**
    * 资产账号
注意:此字段可能返回 null,表示取不到有效值。
    */
    @SerializedName("Account")
    @Expose
    private String Account;

    /**
    * 上次改密结果。0-未改密  1-改密成功 2-改密失败
注意:此字段可能返回 null,表示取不到有效值。
    */
    @SerializedName("LastChangeStatus")
    @Expose
    private Long LastChangeStatus;

    /**
     * Get 资产信息
注意:此字段可能返回 null,表示取不到有效值。 
     * @return Device 资产信息
注意:此字段可能返回 null,表示取不到有效值。
     */
    public Device getDevice() {
        return this.Device;
    }

    /**
     * Set 资产信息
注意:此字段可能返回 null,表示取不到有效值。
     * @param Device 资产信息
注意:此字段可能返回 null,表示取不到有效值。
     */
    public void setDevice(Device Device) {
        this.Device = Device;
    }

    /**
     * Get 资产账号
注意:此字段可能返回 null,表示取不到有效值。 
     * @return Account 资产账号
注意:此字段可能返回 null,表示取不到有效值。
     */
    public String getAccount() {
        return this.Account;
    }

    /**
     * Set 资产账号
注意:此字段可能返回 null,表示取不到有效值。
     * @param Account 资产账号
注意:此字段可能返回 null,表示取不到有效值。
     */
    public void setAccount(String Account) {
        this.Account = Account;
    }

    /**
     * Get 上次改密结果。0-未改密  1-改密成功 2-改密失败
注意:此字段可能返回 null,表示取不到有效值。 
     * @return LastChangeStatus 上次改密结果。0-未改密  1-改密成功 2-改密失败
注意:此字段可能返回 null,表示取不到有效值。
     */
    public Long getLastChangeStatus() {
        return this.LastChangeStatus;
    }

    /**
     * Set 上次改密结果。0-未改密  1-改密成功 2-改密失败
注意:此字段可能返回 null,表示取不到有效值。
     * @param LastChangeStatus 上次改密结果。0-未改密  1-改密成功 2-改密失败
注意:此字段可能返回 null,表示取不到有效值。
     */
    public void setLastChangeStatus(Long LastChangeStatus) {
        this.LastChangeStatus = LastChangeStatus;
    }

    public ChangePwdTaskDetail() {
    }

    /**
     * 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 ChangePwdTaskDetail(ChangePwdTaskDetail source) {
        if (source.Device != null) {
            this.Device = new Device(source.Device);
        }
        if (source.Account != null) {
            this.Account = new String(source.Account);
        }
        if (source.LastChangeStatus != null) {
            this.LastChangeStatus = new Long(source.LastChangeStatus);
        }
    }


    /**
     * Internal implementation, normal users should not use it.
     */
    public void toMap(HashMap map, String prefix) {
        this.setParamObj(map, prefix + "Device.", this.Device);
        this.setParamSimple(map, prefix + "Account", this.Account);
        this.setParamSimple(map, prefix + "LastChangeStatus", this.LastChangeStatus);

    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy