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

com.aliyun.dkms.gcs.sdk.models.HmacResponse 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 HmacResponse extends DKMSResponse {
    @NameInMap("KeyId")
    public String keyId;

    @NameInMap("Signature")
    public byte[] signature;

    @NameInMap("RequestId")
    public String requestId;

    public static HmacResponse build(java.util.Map map) throws Exception {
        HmacResponse self = new HmacResponse();
        return TeaModel.build(map, self);
    }

    public HmacResponse setKeyId(String keyId) {
        this.keyId = keyId;
        return this;
    }
    public String getKeyId() {
        return this.keyId;
    }

    public HmacResponse setSignature(byte[] signature) {
        this.signature = signature;
        return this;
    }
    public byte[] getSignature() {
        return this.signature;
    }

    public HmacResponse setRequestId(String requestId) {
        this.requestId = requestId;
        return this;
    }
    public String getRequestId() {
        return this.requestId;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy