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

com.volcengine.service.live.model.request.UpdatePullToPushTaskRequest Maven / Gradle / Ivy

There is a newer version: 1.0.192
Show newest version
package com.volcengine.service.live.model.request;

import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;

@Data
public class UpdatePullToPushTaskRequest {

    @JSONField(name = "Title")
    private String Title;

    @JSONField(name = "TaskId")
    private String TaskId;

    @JSONField(name = "StartTime")
    private long StartTime;

    @JSONField(name = "EndTime")
    private long EndTime;

    @JSONField(name = "CallbackURL")
    private String CallbackURL;

    @JSONField(name = "Type")
    private int Type;

    @JSONField(name = "CycleMode")
    private int CycleMode;

    @JSONField(name = "DstAddr")
    private String DstAddr;

    @JSONField(name = "SrcAddr")
    private String SrcAddr;

    @JSONField(name = "SrcAddrS")
    private String[] SrcAddrS;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy