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

com.byteplus.model.livesaas.CreateActivityAPIV2Request Maven / Gradle / Ivy

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

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

import java.util.List;


@Data
public class CreateActivityAPIV2Request {
    @JSONField(name = "Name")
    String name;

    @JSONField(name = "LiveTime")
    Long liveTime;

    @JSONField(name = "LiveMode")
    Integer liveMode;

    @JSONField(name = "ViewUrlPath")
    String viewUrlPath;

    @JSONField(name = "CoverImage")
    String coverImage;

    @JSONField(name = "VerticalCoverImage")
    String verticalCoverImage;

    @JSONField(name = "OldId")
    Long oldId;

    @JSONField(name = "CopyStream")
    Boolean copyStream;

    @JSONField(name = "TemplateId")
    Long templateId;

    @JSONField(name = "SiteTags")
    List siteTags;

    @JSONField(name = "TextSiteTags")
    List textSiteTags;

    @Data
    static class CreateActivityAPIV2RequestActTag {
        @JSONField(name = "Value")
        String value;

        @JSONField(name = "Index")
        Long index;
    }

    @Data
    static class CreateActivityAPIV2RequestTextActTag {
        @JSONField(name = "Value")
        String value;

        @JSONField(name = "Index")
        Long index;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy