com.volcengine.model.response.GetAudioRiskResponse 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.response;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.util.List;
@Data
public class GetAudioRiskResponse {
@JSONField(name = "ResponseMetadata")
ResponseMetadata responseMetadata;
@JSONField(name = "Result")
AudioRiskDetectionResult result;
@Data
public static class AudioRiskDetectionResult {
@JSONField(name = "RequestId")
private String requestId;
@JSONField(name = "Code")
private Integer code;
@JSONField(name = "Message")
private String message;
@JSONField(name = "Data")
private AudioResult data;
}
@Data
public static class AudioResult {
@JSONField(name = "Decision")
private String decision;
@JSONField(name = "DecisionDetail")
private String decisionDetail;
@JSONField(name = "Details")
private List details;
@JSONField(name = "DataId")
private String dataId;
@JSONField(name = "AudioText")
private String audioText;
@JSONField(name = "PassThrough")
private String passThrough;
}
@Data
public static class AudioDetail {
@JSONField(name = "StartTime")
private Integer startTime;
@JSONField(name = "EndTime")
private Integer endTime;
@JSONField(name = "FrameUrl")
private String frameUrl;
@JSONField(name = "AudioText")
private String audioText;
@JSONField(name = "FrameID")
private Integer frameId;
@JSONField(name = "FrameResults")
private List frameResults;
@JSONField(name = "UserId")
private String UserId;
@JSONField(name = "SliceId")
private String SliceId;
@JSONField(name = "Decision")
private String Decision;
@JSONField(name = "DecisionDetail")
private String DecisionDetail;
}
@Data
public static class FrameResult {
@JSONField(name = "Label")
private String label;
@JSONField(name = "SubLabel")
private String subLabel;
@JSONField(name = "Decision")
private String decision;
@JSONField(name = "Contexts")
private List contexts;
}
@Data
public static class Context {
@JSONField(name = "MatchedWords")
private List matchedWords;
@JSONField(name = "LibName")
private String libName;
@JSONField(name = "Positions")
private List positions;
}
public static class Position {
@JSONField(name = "StartPos")
private int startPos;
@JSONField(name = "EndPos")
private int endPos;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy