com.volcengine.model.imagex.data.ClientOverviewResp 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.imagex.data;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
@Data
public class ClientOverviewResp {
@JSONField(name = "FailureRate")
private Double failureRate;
@JSONField(name = "SuccessRate")
private Double successRate;
@JSONField(name = "AvgDecodeDuration")
private Double avgDecodeDuration;
@JSONField(name = "AvgQueueDuration")
private Double avgQueueDuration;
@JSONField(name = "AvgLoadDuration")
private Double avgLoadDuration;
@JSONField(name = "TotalCount")
private Long totalCount;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy