com.volcengine.model.acep.v20231030.ResponseResponseMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.acep.v20231030;
import com.alibaba.fastjson.JSON;
/**
* ResponseResponseMetadata
*/
@lombok.Data
public final class ResponseResponseMetadata {
/**
* 错误信息;调用失败时返回
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Error")
private ResponseResponseError error;
/**
* 接口名称,与具体的接口相关,表示要执行的操作
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Action")
private String action;
/**
* 服务区域
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Region")
private String region;
/**
* 服务名称
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Service")
private String service;
/**
* 接口版本
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Version")
private String version;
/**
* 请求 ID
*/
@com.alibaba.fastjson.annotation.JSONField(name = "RequestId")
private String requestId;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy