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

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

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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy