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

com.volcengine.model.VolcstackResponse Maven / Gradle / Ivy

There is a newer version: 1.0.75
Show newest version
package com.volcengine.model;

import com.google.gson.annotations.SerializedName;

/**
 * [email protected]
 * 2022/3/18 15:21
 */
public class VolcstackResponse {
    @SerializedName("ResponseMetadata")
    private ResponseMetadata responseMetadata;
    @SerializedName("Result")
    private T result;

    public ResponseMetadata getResponseMetadata() {
        return responseMetadata;
    }

    public void setResponseMetadata(ResponseMetadata responseMetadata) {
        this.responseMetadata = responseMetadata;
    }

    public T getResult() {
        return result;
    }

    public void setResult(T result) {
        this.result = result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy