All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.byteplus.model.live.request.UpdateCallbackRequest Maven / Gradle / Ivy

There is a newer version: 1.1.23
Show newest version
package com.byteplus.model.live.request;

import com.alibaba.fastjson.annotation.JSONField;
import com.byteplus.model.live.CallbackDetail;
import lombok.Data;

import java.util.Map;

@Data
public class UpdateCallbackRequest {

    @JSONField(name = "MessageType")
    String messageType;
    @JSONField(name = "Vhost")
    String vhost;
    @JSONField(name = "Domain")
    String domain;
    @JSONField(name = "App")
    String app;
    @JSONField(name = "TranscodeCallback")
    Long transcodeCallback;
    @JSONField(name = "CallbackField")
    String[] callbackField;
    @JSONField(name = "AuthField")
    Map authField;
    @JSONField(name = "EncryptField")
    String[] encryptField;
    @JSONField(name = "TimeoutSecond")
    Long timeoutSecond;
    @JSONField(name = "RetryTimes")
    Long retryTimes;
    @JSONField(name = "RetryInternalSecond")
    Long retryInternalSecond;
    @JSONField(name = "CallbackDetailList")
    CallbackDetail[] callbackDetailList;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy