com.aliyun.dkms.gcs.sdk.models.GenerateRandomResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-dkms-gcs-sdk Show documentation
Show all versions of alibabacloud-dkms-gcs-sdk Show documentation
Dedicated Key Management Service Java SDK
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dkms.gcs.sdk.models;
import com.aliyun.tea.*;
public class GenerateRandomResponse extends TeaModel {
/**
* 随机数
*/
@NameInMap("Random")
public byte[] random;
/**
* 请求ID
*/
@NameInMap("RequestId")
public String requestId;
/**
* 响应头
*/
@NameInMap("responseHeaders")
public java.util.Map responseHeaders;
public static GenerateRandomResponse build(java.util.Map map) throws Exception {
GenerateRandomResponse self = new GenerateRandomResponse();
return TeaModel.build(map, self);
}
public GenerateRandomResponse setRandom(byte[] random) {
this.random = random;
return this;
}
public byte[] getRandom() {
return this.random;
}
public GenerateRandomResponse setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GenerateRandomResponse setResponseHeaders(java.util.Map responseHeaders) {
this.responseHeaders = responseHeaders;
return this;
}
public java.util.Map getResponseHeaders() {
return this.responseHeaders;
}
}