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

com.aliyun.dkms.gcs.sdk.models.VerifyResponse Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dkms.gcs.sdk.models;

import com.aliyun.tea.NameInMap;
import com.aliyun.tea.TeaModel;

public class VerifyResponse extends DKMSResponse {
    @NameInMap("KeyId")
    public String keyId;

    @NameInMap("Value")
    public Boolean value;

    @NameInMap("Algorithm")
    public String algorithm;

    @NameInMap("MessageType")
    public String messageType;

    @NameInMap("RequestId")
    public String requestId;

    public static VerifyResponse build(java.util.Map map) throws Exception {
        VerifyResponse self = new VerifyResponse();
        return TeaModel.build(map, self);
    }

    public VerifyResponse setKeyId(String keyId) {
        this.keyId = keyId;
        return this;
    }
    public String getKeyId() {
        return this.keyId;
    }

    public VerifyResponse setValue(Boolean value) {
        this.value = value;
        return this;
    }
    public Boolean getValue() {
        return this.value;
    }

    public VerifyResponse setAlgorithm(String algorithm) {
        this.algorithm = algorithm;
        return this;
    }
    public String getAlgorithm() {
        return this.algorithm;
    }

    public VerifyResponse setMessageType(String messageType) {
        this.messageType = messageType;
        return this;
    }
    public String getMessageType() {
        return this.messageType;
    }

    public VerifyResponse setRequestId(String requestId) {
        this.requestId = requestId;
        return this;
    }
    public String getRequestId() {
        return this.requestId;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy