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

com.byteplus.model.live.v20230101.ListPullToPushTaskV2Body Maven / Gradle / Ivy

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


import com.alibaba.fastjson.JSON;
import java.util.List;

/**
 * ListPullToPushTaskV2Body
 */
@lombok.Data
public final class ListPullToPushTaskV2Body  {

    /**
     * 

查询数据的页码,默认为 1,表示查询第一页的数据。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "Page") private Integer page; /** *

每页显示的数据条数,默认为 20,最大值为 500。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "Size") private Integer size; /** *

拉流转推任务的名称,不区分大小写,支持模糊查询。 例如,`title` 取值为 `doc` 时,则返回任务名称为 `docspace`、`docs`、`DOC` 等 title 中包含 `doc` 关键词的所有任务列表。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "Title") private String title; /** *

群组名称列表,默认为空表示查询所有群组的任务信息。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "GroupNames") private List groupNames; @Override public String toString() { return JSON.toJSONString(this); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy