com.aliyun.dkms.gcs.sdk.models.GetPublicKeyResponse 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 GetPublicKeyResponse extends DKMSResponse {
@NameInMap("KeyId")
public String keyId;
@NameInMap("PublicKey")
public String publicKey;
@NameInMap("RequestId")
public String requestId;
public static GetPublicKeyResponse build(java.util.Map map) throws Exception {
GetPublicKeyResponse self = new GetPublicKeyResponse();
return TeaModel.build(map, self);
}
public GetPublicKeyResponse setKeyId(String keyId) {
this.keyId = keyId;
return this;
}
public String getKeyId() {
return this.keyId;
}
public GetPublicKeyResponse setPublicKey(String publicKey) {
this.publicKey = publicKey;
return this;
}
public String getPublicKey() {
return this.publicKey;
}
public GetPublicKeyResponse setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy