com.aliyun.dkms.gcs.sdk.models.DecryptResponse 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 DecryptResponse extends DKMSResponse {
@NameInMap("KeyId")
public String keyId;
@NameInMap("Plaintext")
public byte[] plaintext;
@NameInMap("Algorithm")
public String algorithm;
@NameInMap("PaddingMode")
public String paddingMode;
@NameInMap("RequestId")
public String requestId;
public static DecryptResponse build(java.util.Map map) throws Exception {
DecryptResponse self = new DecryptResponse();
return TeaModel.build(map, self);
}
public DecryptResponse setKeyId(String keyId) {
this.keyId = keyId;
return this;
}
public String getKeyId() {
return this.keyId;
}
public DecryptResponse setPlaintext(byte[] plaintext) {
this.plaintext = plaintext;
return this;
}
public byte[] getPlaintext() {
return this.plaintext;
}
public DecryptResponse setAlgorithm(String algorithm) {
this.algorithm = algorithm;
return this;
}
public String getAlgorithm() {
return this.algorithm;
}
public DecryptResponse setPaddingMode(String paddingMode) {
this.paddingMode = paddingMode;
return this;
}
public String getPaddingMode() {
return this.paddingMode;
}
public DecryptResponse setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy