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

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

There is a newer version: 0.5.3
Show newest version
// 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 GenerateRandomResponse extends DKMSResponse {
    @NameInMap("Random")
    public byte[] random;

    @NameInMap("RequestId")
    public String requestId;

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy