com.volcengine.model.ipaas.response.ResponseMetaData 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.ipaas.response;
import com.alibaba.fastjson.annotation.JSONField;
import com.volcengine.model.video_aiot.response.ResponseMetadata;
import lombok.Data;
@Data
public class ResponseMetaData {
@JSONField(name = "RequestId")
private String requestId;
@JSONField(name = "Action")
private String action;
@JSONField(name = "Version")
private String version;
@JSONField(name = "Service")
private String service;
@JSONField(name = "Region")
private String region;
@JSONField(name = "Error")
private ResponseMetadata.Error error;
@Data
public static class Error {
@JSONField(name = "CodeN")
private int codeN;
@JSONField(name = "Code")
private String code;
@JSONField(name = "Message")
private String message;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy