com.volcengine.model.livesaas.response.GetLiveTrafficPostPayDataResponse 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.livesaas.response;
import com.alibaba.fastjson.annotation.JSONField;
import com.volcengine.model.beans.livesaas.ActivityCreatorForm;
import com.volcengine.model.response.ResponseMetadata;
import lombok.Data;
import java.util.List;
@Data
public class GetLiveTrafficPostPayDataResponse {
@JSONField(name = "ResponseMetadata")
ResponseMetadata responseMetadata;
@JSONField(name = "Result")
GetLiveTrafficPostPayDataResponseBody result;
@Data
public static class GetLiveTrafficPostPayDataResponseBody {
@JSONField(name = "EstimatedResult")
List EstimatedResult;
@JSONField(name = "ActualResult")
List ActualResult;
@JSONField(name = "ActualPrePayResult")
List ActualPrePayResult;
}
@Data
public static class LiveTrafficData {
@JSONField(name = "ActivityId")
Long ActivityId;
@JSONField(name = "ActivityCreator")
ActivityCreatorForm ActivityCreator;
@JSONField(name = "LiveUV")
Long LiveUV;
@JSONField(name = "LiveTraffic")
Double LiveTraffic;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy