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

com.volcengine.model.live.v20230101.ListPullToPushTaskQuery Maven / Gradle / Ivy

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


import com.alibaba.fastjson.JSON;

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

    /**
     * 

群组名称。

* *

- 使用主账号调用时,为非必填,默认为空,表示查询所有群组的任务信息。

* *

- 使用子账号调用时,非必填。

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

拉流转推任务的名称,不区分大小写,支持模糊查询。

* *

例如,`title` 取值为 `doc` 时,则返回任务名称为 `docspace`、`docs`、`DOC` 等 title 中包含 `doc` 关键词的所有任务列表。

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy